/** * OKLCH colour utilities used across the Fluent Grow colour system. */ export interface OKLCHColor { l: number; c: number; h: number; alpha?: number; } /** * Serialises a colour structure into a CSS `oklch()` string. */ export declare function toOKLCH({ l, c, h, alpha }: OKLCHColor): string; /** * Parses a CSS `oklch()` string into a colour structure. Returns null when the * value cannot be parsed. */ export declare function fromOKLCH(value: string): OKLCHColor | null; //# sourceMappingURL=oklch.d.ts.map