import type { Theme } from './types'; export interface ThemeProviderState { theme: Theme; setTheme: (theme: Theme) => void; } export declare const ThemeProviderContext: import("react").Context;