export type Theme = "light" | "dark"; export interface ThemeContextType { theme: Theme; setTheme: (theme: Theme) => void; } export declare const ThemeContext: import('react').Context; export interface ThemeProviderProps { defaultTheme?: Theme; children: React.ReactNode; } export declare const ThemeProvider: ({ defaultTheme, children, }: ThemeProviderProps) => import("react/jsx-runtime").JSX.Element; export declare const Theme: ({ defaultTheme, children, }: ThemeProviderProps) => import("react/jsx-runtime").JSX.Element;