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