import { OverrideProps } from '@mui/types'; import { SxProps } from '../styles/types'; import { SlotProps, CreateSlotsAndSlotProps } from '../utils/types'; export type ScopedCssBaselineSlot = 'root'; export interface ScopedCssBaselineSlots { /** * The component that renders the root. * @default 'div' */ root?: React.ElementType; } export type ScopedCssBaselineSlotsAndSlotProps = CreateSlotsAndSlotProps; }>; export interface ScopedCssBaselineTypeMap

{ props: P & { /** * You can wrap a node. */ children?: React.ReactNode; /** * Disable `color-scheme` CSS property. * For more details, check out https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme * For browser support, check out https://caniuse.com/?search=color-scheme * @default false */ disableColorScheme?: boolean; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; } & ScopedCssBaselineSlotsAndSlotProps; defaultComponent: D; } export type ScopedCssBaselineProps = OverrideProps, D>; export interface ScopedCssBaselineOwnerState extends ScopedCssBaselineProps { }