import { FlexProps } from './flex.types'; /** * # Flex * * The Flex component is used to create layouts based on CSS display flex. * * Built on top of Chakra UI's Flex component with Nimbus theming. * * @supportsStyleProps * * @see {@link https://nimbus-documentation.vercel.app/components/layout/flex} * * @example * ```tsx * * Item 1 * Item 2 * * ``` */ export declare const Flex: { (props: FlexProps): import("react/jsx-runtime").JSX.Element; displayName: string; };