import React from "react"; import { ThemeContextType } from "./ThemeContext"; export declare type ThemeContextProviderProps> = { children: React.ReactNode; value: ThemeContextType; }; export declare function ThemeContextProvider>({ children, value, }: ThemeContextProviderProps): JSX.Element; export declare function useThemeContext>(): ThemeContextType;