import React from "react"; //#region src/ThemeProvider.d.ts type Theme = { [key: string]: any; }; type ColorMode = 'day' | 'night' | 'light' | 'dark'; type ColorModeWithAuto = ColorMode | 'auto'; type ThemeProviderProps = { colorMode?: ColorModeWithAuto; dayScheme?: string; nightScheme?: string; /** * @deprecated This prop is no longer used and has no effect. */ preventSSRMismatch?: boolean; /** * When true, only provides theme context to descendants without rendering * a wrapping `