type TEDITheme = 'default' | 'dark'; export type Theme = TEDITheme | string; interface ThemeContextValue { theme: Theme; setTheme: (theme: Theme) => void; } export declare const useTheme: () => ThemeContextValue; export declare const ThemeProvider: ({ theme: initialTheme, children }: { theme?: Theme; children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; export {};