export declare const mixColors: (color1: string, color2: string, weight?: number) => string; export declare const hex2rgb: (hex: string) => string; export declare const isHex: (value: string) => boolean; export declare const isHexColor: (input: string) => boolean; export declare const calculateWeightDifference: (color1: string, color2: string, generatedColor: string) => number;