export declare const hexToRgb: (hex: string) => { r: number; g: number; b: number; }; export declare const hexToRgba: (color: string, alpha: number) => string; export declare const lighten: (color: string, amount: number) => string; export declare const darken: (color: string, amount: number) => string;