UNPKG

300 BTypeScriptView Raw
1import { type StackProps } from "./stack";
2/**
3 * A view that arranges its children in a vertical line.
4 *
5 * @see Docs https://chakra-ui.com/docs/components/stack
6 */
7export declare const VStack: import("react").ForwardRefExoticComponent<StackProps & import("react").RefAttributes<HTMLDivElement>>;