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

{ props: P & DrawerFooterSlotsAndSlotProps; defaultComponent: D; } export type DrawerFooterProps = OverrideProps, D>; export interface DrawerFooterOwnerState extends DrawerFooterProps { expanded?: boolean; }