import * as React from 'react'; import { OverrideProps } from '@mui/types'; import { CreateSlotsAndSlotProps, SlotCommonProps, SlotProps } from '../../types/slot'; export type DrawerBodySlot = 'root'; export interface DrawerBodySlots { /** * The component that renders the root. * @default 'div' */ root?: React.ElementType; } export type DrawerBodySlotsAndSlotProps = CreateSlotsAndSlotProps; }>; export interface DrawerBodyTypeMap

{ props: P & DrawerBodySlotsAndSlotProps; defaultComponent: D; } export type DrawerBodyProps = OverrideProps, D>; export interface DrawerBodyOwnerState extends DrawerBodyProps { expanded?: boolean; }