import type { HStackProps, StackProps, VStackProps } from './Stack.types'; /** * `Stack` is a layout component used to group elements together and apply a space between them. * @example * * ```tsx * *
{ ... }
*
{ ... }
*
* ``` */ export declare const Stack: import("react").ForwardRefExoticComponent>; /** * `HStack` is a shorthand component equivalent to `Stack` with a horizontal direction property. * @see Stack */ export declare const HStack: import("react").ForwardRefExoticComponent>; /** * `VStack` is a shorthand component equivalent to `Stack` with a vertical direction property. * @see Stack */ export declare const VStack: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=Stack.d.ts.map