import { StepType, StepItem } from './types'; import { PropType, ExtractPropTypes } from 'vue'; /** * 属性 */ export declare const stepsProps: { /** 步骤条数据 */ items: { type: PropType; required: boolean; }; /** 类型 */ type: PropType; space: import('element-plus/es/utils').EpPropFinalized; active: import('element-plus/es/utils').EpPropFinalized; direction: import('element-plus/es/utils').EpPropFinalized; alignCenter: { readonly type: PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; simple: { readonly type: PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; finishStatus: import('element-plus/es/utils').EpPropFinalized; processStatus: import('element-plus/es/utils').EpPropFinalized; }; export type StepsProps = ExtractPropTypes;