///
import { StackProps } from './types';
export type HorizontalAlignment = 'stretch' | 'leading' | 'trailing' | 'center';
export interface VStackProps extends StackProps {
alignment?: HorizontalAlignment;
}
/**
* @deprecated Stack을 사용해주세요
*/
export declare const VStack: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme | undefined;
as?: import("react").ElementType | undefined;
} & VStackProps, import("react").DetailedHTMLProps, HTMLDivElement>, {}>;