import React from 'react'; import { type FlexComponentProps, type FlexInlineProps } from './flex'; export type FlexInlineComponentProps = FlexComponentProps; /** * A horizontal layout component that arranges items with consistent spacing * without wrapping content within additional components. * * - Supports responsive spacing and alignment * - Can be reversed, centered, or justified * - Wrapping behavior can be controlled * * The `inline` function is available to apply the same flex layout option * to any html element. Example use * `
` * * **Note**: Responsive props (`align`, `justify`) take precedence over * shortcut props (`center`, `start`, etc.). * * @example * // Basic inline row with centered items * *
Item 1
*
Item 2
*
Item 3
*
* * @example * // Responsive properties * * * * * */ export declare const FlexInline: { ({ as, children, expand, align, center, end, fullWidth, gap, height, noWrap, justify, reverse, spaceBetween, start, ...attrs }: FlexInlineComponentProps): React.JSX.Element; displayName: string; }; //# sourceMappingURL=FlexInline.d.ts.map