import type { ExtractPropTypes } from 'vue'; import type Row from './row.vue'; export declare const RowJustify: readonly ["start", "center", "end", "space-around", "space-between", "space-evenly"]; export declare const RowAlign: readonly ["top", "middle", "bottom"]; export declare const rowProps: { readonly tag: import("element-plus/es/utils").EpPropFinalized; readonly gutter: import("element-plus/es/utils").EpPropFinalized; readonly justify: import("element-plus/es/utils").EpPropFinalized; readonly align: { readonly type: import("vue").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export declare type RowProps = ExtractPropTypes; export declare type RowInstance = InstanceType;