export declare function getColorFormat(color: string): "hex" | "rgb" | "unknown" | "rgba"; export declare function convertHexToRgba(hex: string, opacity: number): string; export declare function changeRgbaOpacity(rgba: string, opacity: number): string; export declare function computeHslColor(color: string, opacity: number): string;