import type { LAB } from './lab';
type LCH = {
    c: number;
    h: number;
    l: number;
};
export declare const labToLch: ({ l, a, b }: LAB) => LCH;
export {};
