import { EduzzThemeMode } from './shared/index'; export type ThemeContextValue = { theme: EduzzThemeMode; setTheme(mode: EduzzThemeMode): void; toggle(): void; }; export declare const ThemeContext: import('react').Context; export declare function useTheme(): ThemeContextValue;