declare class ThemeColorPalette { hover?: string; active?: string; front?: string; light?: string; plain?: string; plainHover?: string; plainActive?: string; primaryHover?: string; primaryActive?: string; } interface GenerateThemeColorPaletteProps { color: string; background: string; } export declare const getBrightness: (color: string) => number; export declare const generateThemeColorPalette: ({ color, background }: GenerateThemeColorPaletteProps) => ThemeColorPalette; export {};