import * as React from 'react'; import { Styles } from '../types'; declare const Stack: React.ForwardRefExoticComponent, "style" | "className"> & { $as?: React.ElementType | undefined; className?: Styles; style?: Styles; } & { direction?: ("horizontal" | "vertical") | undefined; gap: number; } & Partial<{ sm: { direction?: ("horizontal" | "vertical") | undefined; gap: number; }; md: { direction?: ("horizontal" | "vertical") | undefined; gap: number; }; lg: { direction?: ("horizontal" | "vertical") | undefined; gap: number; }; xl: { direction?: ("horizontal" | "vertical") | undefined; gap: number; }; overrides: { Stack?: import("../overrides").Override> | undefined; }; shrink: boolean; }> & React.RefAttributes>; export default Stack;