export declare function hexToNormalizedRGB(hex: string): {
    r: number;
    g: number;
    b: number;
};
