export declare const hexToRGBAValues: (hex: string) => {
    r: number;
    g: number;
    b: number;
    a: number;
};
