import React, { type ReactNode } from 'react'; import type { Sprinkles } from '../../styles/sprinkles.css'; import { type UseBoxProps } from '../Box/useBox/useBox'; export interface StackProps extends Pick { children: ReactNode; className?: string; /** * Show a divider element between each item */ dividers?: boolean; /** * Defines the gap between list items. Accepts responsive values * @default '2' */ space?: Sprinkles['padding']; } /** * Stack arranges child elements vertically, one below the other. * It allows you to control the spacing between items, alignment, and optionally add dividers. * Useful for creating vertical lists, forms, or sections. * * @example * * Item 1 * Item 2 * Item 3 * * * @example * * * * * * @example * * Card 1 * Card 2 * */ export declare const Stack: ({ as, children, className, alignItems, dividers, space: gap, width, }: StackProps) => React.JSX.Element | null; //# sourceMappingURL=Stack.d.ts.map