import React from 'react'; import { type FlexComponentProps, type FlexStackProps } from './flex'; export type FlexStackComponentProps = FlexComponentProps; /** * A vertical layout component that arranges children in a column with * consistent spacing without wrapping contint within additional components. * * - Supports responsive spacing and alignment * - Can be reversed, centered, or justified * * The `stack` 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 stack * *
Item 1
*
Item 2
*
Item 3
*
* * @example * // Full-width content with gap * * Content 1 * Content 2 * Content 3 * * * @example * // Responsive stack with different alignments * * * * * */ export declare const FlexStack: { ({ as, children, align, center, end, gap, justify, minWidth, reverse, start, width, ...attrs }: FlexStackComponentProps): React.JSX.Element; displayName: string; }; //# sourceMappingURL=FlexStack.d.ts.map