import { type BezierComponentProps, type ChildrenProps, type LayoutProps, type MarginProps } from "../../types/props"; type Display = 'flex' | 'inline-flex'; interface CenterOwnProps { /** * Display type of the center. * @default 'flex' */ display?: Display; } export interface CenterProps extends BezierComponentProps<'div'>, ChildrenProps, LayoutProps, MarginProps, CenterOwnProps { } export {}; //# sourceMappingURL=Center.types.d.ts.map