interface ThemeHook { theme: string; setTheme: (theme: string) => void; toggleTheme: () => void; } /** * Universal theme hook */ export declare function useTheme(): ThemeHook; export {}; //# sourceMappingURL=use-theme.d.ts.map