export type ColorFormat = 'hsl' | 'rgb' | 'hwb' | 'lab' | 'lch' | 'oklch';
export declare const color: {
    red: string;
    orange: string;
    amber: string;
    yellow: string;
    lime: string;
    green: string;
    emerald: string;
    teal: string;
    cyan: string;
    sky: string;
    blue: string;
    indigo: string;
    violet: string;
    purple: string;
    fuchsia: string;
    pink: string;
    rose: string;
    slate: string;
    gray: string;
    zinc: string;
    neutral: string;
    stone: string;
};
export declare const colorLib: ({ output, colors }: {
    output: ColorFormat;
    colors: {
        [hex: string]: string;
    };
}) => any;
