/// import * as DarkMode from '../dark-mode'; export interface BaseTheme { primary: string; secondary: string; tertiary: string; } export interface Props { children?: React.ReactNode; initialTheme: State; } export declare type State = Record; export interface Context { theme: T; setTheme: (theme: State) => void; }