import React from 'react'; import { BoxProps } from '../Box'; import { FlexedProps } from './types'; export type FlexProps = BoxProps & FlexedProps; export declare const Flex: React.ForwardRefExoticComponent; alignItems: "center" | "end" | "start" | "baseline" | "normal" | "flex-start" | "flex-end" | "stretch" | "self-start" | "self-end" | import("../../types").Responsive<"center" | "end" | "start" | "baseline" | "normal" | "flex-start" | "flex-end" | "stretch" | "self-start" | "self-end">; flexColumnGap: string | import("../../types").Responsive; flexDirection: "row" | "column" | "row-reverse" | "column-reverse" | import("../../types").Responsive<"row" | "column" | "row-reverse" | "column-reverse">; flexGap: string | import("../../types").Responsive; flexRowGap: string | import("../../types").Responsive; flexWrap: "wrap" | "nowrap" | "wrap-reverse" | import("../../types").Responsive<"wrap" | "nowrap" | "wrap-reverse">; justifyContent: "center" | "end" | "start" | "baseline" | "left" | "right" | "normal" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | "stretch" | import("../../types").Responsive<"center" | "end" | "start" | "baseline" | "left" | "right" | "normal" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | "stretch">; }> & React.RefAttributes>; //# sourceMappingURL=Flex.d.ts.map