import type { ReactNode } from 'react'; export type FlexContainerProps = { children?: ReactNode; inline?: boolean; direction?: 'row' | 'row-reverse' | 'column' | 'column-reverse'; wrap?: 'no-wrap' | 'wrap' | 'wrap-reverse'; alignItems?: 'stretch' | 'start' | 'center' | 'end' | 'baseline'; alignContent?: 'start' | 'center' | 'end' | 'space-between' | 'space-around'; justifyContent?: 'start' | 'center' | 'end' | 'space-between' | 'space-around'; }; declare function FlexContainer({ inline, children, direction, wrap, alignItems, alignContent, justifyContent, }: FlexContainerProps): import("react/jsx-runtime").JSX.Element; export default FlexContainer; //# sourceMappingURL=FlexContainer.d.ts.map