import React, { ReactNode } from 'react'; type Theme = 'light' | 'dark'; interface ThemeContextValue { theme: Theme; setTheme: (theme: Theme) => void; toggleTheme: () => void; isDark: boolean; isLight: boolean; } export declare const useTheme: () => ThemeContextValue; interface ThemeProviderProps { children: ReactNode; defaultTheme?: Theme; } export declare const ThemeProvider: React.FC; export {}; //# sourceMappingURL=useTheme.d.ts.map