import { type GroupProps } from '../../jsx'; export interface AlignLayoutProps extends GroupProps { /** 水平对齐方式 */ horizontal?: 'left' | 'center' | 'right'; /** 垂直对齐方式 */ vertical?: 'top' | 'middle' | 'bottom'; } export declare const AlignLayout: import("../../jsx").ComponentType;