Page MenuHomec4science

CssVarsProvider.d.ts
No OneTemporary

File Metadata

Created
Tue, Feb 4, 09:30

CssVarsProvider.d.ts

/// <reference types="react" />
import { SupportedColorScheme } from './experimental_extendTheme';
declare const shouldSkipGeneratingVar: (keys: string[]) => boolean;
declare const CssVarsProvider: (props: import("react").PropsWithChildren<Partial<import("@mui/system").CssVarsProviderConfig<SupportedColorScheme>> & {
theme?: {
cssVarPrefix?: string | undefined;
colorSchemes: Record<SupportedColorScheme, Record<string, any>>;
} | undefined;
documentNode?: Document | null | undefined;
colorSchemeNode?: Element | null | undefined;
colorSchemeSelector?: string | undefined;
storageWindow?: Window | null | undefined;
disableNestedContext?: boolean | undefined;
disableStyleSheetGeneration?: boolean | undefined;
}>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>, useColorScheme: () => import("@mui/system").ColorSchemeContextValue<SupportedColorScheme>, getInitColorSchemeScript: typeof import("@mui/system").getInitColorSchemeScript;
export { useColorScheme, getInitColorSchemeScript, shouldSkipGeneratingVar, CssVarsProvider as Experimental_CssVarsProvider, };

Event Timeline