import { PropType } from 'vue'; import { Direction } from '../../utils/types'; export type StepStatus = 'inactivated' | 'active' | 'success'; export interface StepItem { id: string; label?: string; icon?: string; helper?: string; } export interface Step { label: string; id: string; status?: StepStatus; icon?: string; helper?: string; } export declare const stepProps: { steps: { type: PropType; require: boolean; default: () => string[]; }; activeIndex: { type: NumberConstructor; default: number; }; compact: { type: BooleanConstructor; default: boolean; }; direction: { type: PropType; default: string; }; }; export type StepProps = typeof stepProps;