import { spacing } from '../tokens.js'; import { BaseComponentProps } from '../types.js'; type SpacingKey = keyof typeof spacing; export interface StackProps extends BaseComponentProps { direction?: 'row' | 'column'; gap?: SpacingKey; align?: React.CSSProperties['alignItems']; justify?: React.CSSProperties['justifyContent']; wrap?: boolean; } export declare function Stack({ direction, gap, align, justify, wrap, style, children, ...rest }: StackProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=stack.d.ts.map