import { ComponentProps, As, ComponentWithAs } from '../types.js'; import '../../theme-79e176a6.js'; import '../../utils/object.js'; import '../../utils/types.js'; import '@kuma-ui/sheet'; import '../componentList.js'; import '@kuma-ui/system'; import 'react'; type VStackProps = ComponentProps<"VStack">; type VStackComponent = ComponentWithAs; /** * VStack is a Box component with `display="flex"` and `flex-direction: column` set by default. It makes it easier to layout and align child components in a vertical direction. It is a fundamental layout component in Kuma UI. * * @see — http://kuma-ui.com/docs/Components/VStack */ declare const VStack: VStackComponent; export { VStack, VStackComponent, VStackProps };