type Color = Record<string | number, string>;
type Options = {
    colors?: string[];
    names?: string[];
    preserve?: boolean;
    shades?: Shade[];
};
type Palette = Record<string, Color>;
type Shade = {
    name: string | number;
    lightness: number;
};

declare const tailwindcssPaletteGenerator: (options: string | string[] | Options) => Palette;

export { tailwindcssPaletteGenerator as default, tailwindcssPaletteGenerator };
