import React from 'react'; import type { FlexContainerProps } from './types'; declare function FlexContainer({ inline, width, height, gap, rowGap, columnGap, row, rowReverse, column, columnReverse, flexDirection, wrap, noWrap, wrapReverse, flexWrap, justifyStart, justifyEnd, justifyCenter, justifySpaceBetween, justifySpaceAround, justifySpaceEvenly, justifyContent, alignItemsStart, alignItemsEnd, alignItemsCenter, alignItemsBaseline, alignItemsStretch, alignItems, alignContentStart, alignContentEnd, alignContentCenter, alignContentSpaceBetween, alignContentSpaceAround, alignContentStretch, alignContent, flow, as: Tag, className, style, children, ...rest }: FlexContainerProps): React.ReactElement; export default FlexContainer; //# sourceMappingURL=FlexContainer.d.ts.map