import React from "react"; import { StackProps } from "./Stack"; export interface VStackProps extends Omit { /** * If `true`, the stack will use `flexDirection: "column-reverse"` instead of `flexDirection: "column"`. * * @default false */ reversed?: boolean; } declare const VStack: React.FC; export default VStack;