export interface Rgb { r: number; g: number; b: number; } /** * Convert hex color string to rgb color object * @param hex hex color string * @returns rgb color object */ export declare function hexToRgb(hex: string): Rgb | null;