import React, { ReactNode, Dispatch, SetStateAction } from 'react'; export declare type ThemeIdentifierType = 'light' | 'dark'; export declare type ThemeIdentifierContextType = [ThemeIdentifierType, Dispatch>]; export declare const ThemeIdentifierContext: React.Context; interface ThemeIdentifierProviderProps { children: ReactNode; handleThemeManually: boolean; } export declare function ThemeIdentifierProvider({ children, handleThemeManually }: ThemeIdentifierProviderProps): JSX.Element; export {};