import { Property } from "csstype"; import { ResponsiveProps } from "../../styled-system/types"; import { ElementType, HTMLHopeProps } from "../types"; export declare type FlexOptions = ResponsiveProps<{ direction?: Property.FlexDirection; wrap?: Property.FlexWrap; }>; export declare type FlexProps = HTMLHopeProps; /** * Hope UI component used to create flexbox layouts. * It renders a `div` with `display: flex` and comes with helpful style shorthand. */ export declare function Flex(props: FlexProps): import("solid-js").JSX.Element; export declare namespace Flex { var toString: () => string; } //# sourceMappingURL=flex.d.ts.map