import type Steps from './steps.vue'; import type { ExtractPropTypes } from 'vue'; export declare const stepsProps: { readonly space: import("element-plus/es/utils").EpPropFinalized; readonly active: import("element-plus/es/utils").EpPropFinalized; readonly direction: import("element-plus/es/utils").EpPropFinalized; readonly alignCenter: { readonly type: import("vue").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly simple: { readonly type: import("vue").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly finishStatus: import("element-plus/es/utils").EpPropFinalized; readonly processStatus: import("element-plus/es/utils").EpPropFinalized; }; export declare type StepsProps = ExtractPropTypes; export declare const stepsEmits: { change: (newVal: number, oldVal: number) => boolean; }; export declare type StepsEmits = typeof stepsEmits; export declare type StepsInstance = InstanceType;