import type { ComputedRef, ExtractPropTypes, InjectionKey } 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-next/vue-utils").EpPropFinalized; readonly gutter: import("@element-plus-next/vue-utils").EpPropFinalized; readonly justify: import("@element-plus-next/vue-utils").EpPropFinalized; readonly align: import("@element-plus-next/vue-utils").EpPropFinalized; }; export declare type RowProps = ExtractPropTypes; export declare type RowInstance = InstanceType; interface RowContext { gutter: ComputedRef; } export declare const rowContextKey: InjectionKey; export {};