import { StackProps } from './Stack'; export interface VStackProps extends Omit { reverse?: boolean; } declare const VStack: import("../internals/types").InternalRefForwardingComponent<"div", VStackProps, never> & { Item: import("../internals/types").InternalRefForwardingComponent<"div", import("./StackItem").StackItemProps, never> & Record; }; export default VStack;