import { FC, ReactNode } from "react"; import { TThemeAction, IThemeContext } from "./types"; interface Props { children: ReactNode; } export declare const ThemeProvider: FC; export declare const useTheme: () => IThemeContext & { handleChange: TThemeAction; }; export {};