import { BoxBaseProps } from '../base/boxBase'; /** * Props for the {@link Flex} component. * * Extends {@link BoxBaseProps} with grid-related props removed. * Intended for flexbox-only layouts. * * @category Flex */ export type FlexProps = Omit; /** * Flex layout container. * * Renders a flexbox-based layout with a horizontal direction by default. * Use this component whenever you want to explicitly work with flexbox * semantics instead of relying on generic containers. * * Built on top of {@link BoxBase} and exposes only flex-relevant layout props. * * @category Flex * @function * @param props - Flex layout props inherited from {@link BoxBase}. * * @example * * * * * * @example * *
* * */ export declare const Flex: import('react').ForwardRefExoticComponent>;