import React from 'react'; import { BrandColors, ColorTheme } from './theme-data'; interface BrandColorsContextType { colors: BrandColors; currentTheme: string; themes: ColorTheme[]; setTheme: (themeId: string) => void; setBrandColor: (colorKey: keyof BrandColors, value: string) => void; radius: number; setRadius: (radius: number) => void; } interface BrandColorsProviderProps { children: React.ReactNode; defaultTheme?: string; primaryColor?: string; useCustomTokens?: boolean; } export declare const BrandColorsProvider: React.FC; export declare const useBrandColors: () => BrandColorsContextType; export {};