import * as React from 'react'; import { OverrideProps } from '@mui/types'; import { SystemProps } from '@mui/system'; import { SlotCommonProps } from '../types/slot'; import { Theme } from '../styles'; export interface BoxOwnProps extends SystemProps { /** * The content of the component. */ children?: React.ReactNode; ref?: React.Ref; } export interface BoxTypeMap

{ props: P & BoxOwnProps & Pick; defaultComponent: D; } export type BoxProps = OverrideProps, RootComponent> & { component?: React.ElementType; }; export interface BoxOwnerState extends BoxProps { }