import { ReactElement } from 'react'; import { Property } from 'csstype'; import { FlexItemProps } from './FlexItem'; declare type FlexItem = ReactElement; declare type FlexItems = FlexItem[]; declare type Children = FlexItems | FlexItem; declare type FlexBoxPropsType = Readonly<{ className?: string; horizontal?: boolean; alignItems?: Property.AlignItems; justifyContent?: Property.JustifyContent; responsive?: boolean; height?: string; children: Children; }>; export default function FlexBox({ children, horizontal, responsive, alignItems, justifyContent, height, className, }: FlexBoxPropsType): JSX.Element; export {};