import React, { ElementType } from 'react'; import { ScopedCssBaselineProps, BoxProps, Theme } from '@mui/material'; import { Options } from '@emotion/cache'; import '../../materialui/theme/theme.extensions'; export type SkodaThemeProviderProps = { children?: React.ReactNode; /** * Theme to be used */ theme?: Partial; /** * Disable adding extra ScopedCssBaseline as CssBaseline is being used */ globalBaseline?: boolean; /** * Changes @media queries to @container queries, */ widget?: boolean; /** * Options for the cache creation function by Emotion */ createCacheOptions?: Options; /** * Props passed to container used by the widget */ containerProps?: BoxProps; } & ScopedCssBaselineProps; /** * Wrapper of ThemeProvider that additionally provide Scoped CssBaseline */ export declare const SkodaThemeProvider: React.FC;