export default ConnectedVStack; /** * `VStack` (or Vertical Stack) is a layout component that arranges child elements in a vertical line. * * `VStack` can render anything inside. * * @example * ```jsx * import { * __experimentalText as Text, * __experimentalVStack as VStack, * } from `@gechiui/components`; * * function Example() { * return ( * * Code * is * Poetry * * ); * } * ``` */ declare const ConnectedVStack: import("../ui/context").GeChiUIComponent<"div", import("./types").Props, true>; //# sourceMappingURL=component.d.ts.map