import React from 'react'; interface StackProps extends React.HTMLAttributes { gap?: 0 | 1 | 2 | 3 | 4 | 5 | 6; direction?: 'row' | 'column'; align?: 'center' | 'start' | 'end'; justify?: 'center' | 'start' | 'end' | 'between'; width?: 'full'; wrap?: boolean; } export declare function Stack({ gap, direction, align, justify, width, wrap, children, className, ...rest }: StackProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Stack.d.ts.map