import React from "react"; import { BoxProps } from "./box"; type Direction = "row" | "column"; type Justify = "center" | "start" | "end" | "space-between" | "space-around" | "space-evenly" | "stretch"; type Align = "center" | "start" | "end" | "stretch"; export interface FlexProps extends Omit { direction?: Direction; justify?: Justify; align?: Align; reverse?: boolean; wrap?: boolean; center?: boolean; children?: React.ReactNode; } declare function Flex({ direction, justify, align, reverse, wrap, center, className, children, ...rest }: FlexProps): React.JSX.Element; export default Flex;