export type ThemeContextProps = { theme?: string; switchTheme?: (theme: string) => void; }; declare const ThemeContext: import("react").Context; export default ThemeContext;