import { TTheme } from '../config/config'; export type TThemeContext = { theme: TTheme; toggleTheme: () => void; }; export declare const ThemeContext: import('react').Context; export declare const useThemeContext: () => TThemeContext;