import { type CSSProperties, type HTMLAttributes, type ReactNode, type Ref } from 'react'; type StackProps = { gap?: string; align?: 'start' | 'center' | 'end' | 'stretch'; divider?: ReactNode; asChild?: boolean; className?: string; style?: CSSProperties; children?: ReactNode; ref?: Ref; } & Omit, 'className' | 'style'>; declare const Stack: ({ gap, align, divider, asChild, className, style, children, ref, ...rest }: StackProps) => import("react/jsx-runtime").JSX.Element; export { Stack }; export type { StackProps };