import { ComponentProps } from 'react'; import { Align, Gap, Height, Justify, Orientation, Side, Width } from '../../generated.js'; export type StackProps = Omit, "align"> & { align?: Align; direction?: Orientation; float?: Side; gap?: Gap; height?: Height; justify?: Justify; sticky?: boolean; width?: Width; }; export declare const stackGaps: Record; export declare function Stack({ align, className, direction, float, gap, height, justify, sticky, width, ...props }: StackProps): import("react").JSX.Element;