export declare const mkColor: (color: string) => {
    color: string;
};
export declare const lightenColor: (color: string) => string;
export declare const darkenColor: (color: string) => string;
export declare const getPreferredColorScheme: () => "light" | "dark";
