import type { FC, Ref } from 'react'; import { type StackProps } from './Stack'; export interface VStackProps extends Omit { ref?: Ref; } export declare const VStack: FC;