/** * Converts a hex color string to an array of rgb values. * @param hex - A css hex color string, i.e. `#fff` or `#ffffff` */ export declare function hexToRgb(hex: string): string;