export declare const hexToRgb: (hex: string) => number[];
export declare const rgbToHex: (r: number, g: number, b: number) => string;
export declare const colorDodge: (base: string, blend: string) => string;
export declare const colorMix: (color: string, alpha: number) => string;
