import React from "react";
export declare type Theme = "light" | "dark";
interface ContextState {
    theme: Theme;
    toggleTheme: () => void;
}
export declare const ThemeContext: React.Context<ContextState>;
declare const ThemeProvider: ({ children }: {
    children: any;
}) => JSX.Element;
export default ThemeProvider;
