import { type BezierComponentProps, type ChildrenProps, type LayoutProps, type MarginProps, type PolymorphicProps } from "../../types/props"; type Display = 'block' | 'inline' | 'inline-block'; interface BoxOwnProps { /** * Display type of the box. */ display?: Display; } export interface BoxProps extends BezierComponentProps<'div'>, PolymorphicProps, ChildrenProps, LayoutProps, MarginProps, BoxOwnProps { } export {}; //# sourceMappingURL=Box.types.d.ts.map