import * as react from 'react'; import { HTMLAttributes } from 'react'; type StackGap = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; type StackAlign = 'start' | 'center' | 'end' | 'stretch'; interface StackProps extends HTMLAttributes { as?: 'div' | 'section' | 'article' | 'header' | 'footer' | 'nav'; gap?: StackGap; align?: StackAlign; } declare const Stack: react.ForwardRefExoticComponent>; export { Stack, type StackAlign, type StackGap, type StackProps };