/** * Ported to TS from here: tailwindcss/src/util/flattenColorPalette */ type ColorPalette = Record; type FlattenedPalette = Record; /** * Entry point function to flatten color palettes. * * This function takes a color palette object and returns a new object * with the nested color palettes flattened and the keys formatted. */ export declare const flattenColorPalette: (colors: ColorPalette | null | undefined) => FlattenedPalette; export {};