import { default as React } from 'react'; export type Theme = 'light' | 'dark' | 'system'; interface ThemeContextType { theme: Theme; setTheme: (theme: Theme) => void; isDark: boolean; } export declare const useTheme: () => ThemeContextType; interface ThemeProviderProps { children: React.ReactNode; } export declare const ThemeProvider: React.FC; export {}; //# sourceMappingURL=ThemeContext.d.ts.map