import * as React from 'react'; import { CSSObject } from '@emotion/react'; import type { Property } from 'csstype'; export interface FlexBoxProps extends React.PropsWithRef> { align?: string; column?: boolean; flexWrap?: Property.FlexWrap; justify?: string; } export declare const flexBoxStyle: (props: FlexBoxProps) => CSSObject; export declare const filterFlexBoxProps: (props: FlexBoxProps) => Object; export declare const FlexBox: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; //# sourceMappingURL=FlexBox.d.ts.map