import * as React from 'react'; interface StackProps extends React.HTMLAttributes { direction?: 'horizontal' | 'vertical'; spacing?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; align?: 'start' | 'center' | 'end' | 'stretch'; justify?: 'start' | 'center' | 'end' | 'between' | 'around'; } declare const Stack: React.ForwardRefExoticComponent>; export { Stack, type StackProps };