export type Theme = string; /** * React hook to switch between themes. * * Accepts any theme name ("light", "dark", "brutalism-light", etc.). * Pass "system" to follow the OS preference (resolves to "light" or "dark"). * * @param defaultTheme - the initial theme name (defaults to "system") */ export declare function useTheme(defaultTheme?: Theme): { theme: string; setTheme: (newTheme: Theme) => void; };