import { ElementType } from 'react'; import { OverrideProps } from '../../types/utils.js'; import { Interpolation } from '@nex-ui/system'; interface BoxPropsOverrides { } type BoxOwnProps = { /** * The component or element to render as the root. * @default 'div' */ as?: RootComponent; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: Interpolation; }; type BoxProps = OverrideProps, BoxPropsOverrides>; export type { BoxProps, BoxPropsOverrides };