import { ColorScale } from '../types'; export declare function parseHSL(hsl: string): { h: number; s: number; l: number; }; export declare function formatHSL(h: number, s: number, l: number): string; export declare function generateColorScale(baseColor: string): ColorScale; export declare function getContrastColor(baseColor: string): string; export declare function adjustColorLightness(baseColor: string, adjustment: number): string; //# sourceMappingURL=color-utils.d.ts.map