import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; import { Sizes } from '../types'; declare type FlexProps = { children: React.ReactChild[] | React.ReactNode; className?: string; data?: object; horizontal?: "left" | "center" | "right" | "stretch" | "none"; justify?: "start" | "center" | "end" | "around" | "between" | "evenly" | "none"; id?: string; inline?: boolean; orientation?: "row" | "column"; spacing?: "around" | "between" | "evenly" | "none"; reverse?: boolean; vertical?: "top" | "center" | "bottom" | "stretch" | "baseline" | "none"; align?: "start" | "center" | "end" | "stretch" | "baseline" | "none"; gap?: Sizes | "none"; rowGap?: Sizes | "none"; columnGap?: Sizes | "none"; wrap?: boolean; alignSelf?: "start" | "end" | "center" | "stretch" | "none"; } & GlobalProps; declare const Flex: (props: FlexProps) => JSX.Element; export default Flex;