declare type ColorHex2Rgb = (hex: string) => { r: number; g: number; b: number; }; export declare const colorHex2Rgb: ColorHex2Rgb; export {};