import type { Ref, PropType, Component } from 'vue'; export interface IStepsProps { space: number | string; active: number; direction: string; alignCenter: boolean; simple: boolean; finishStatus: string; processStatus: string; } export interface StepItemState { uid: number; currentStatus: string; setIndex: (val: number) => void; calcProgress: (status: string) => void; } export interface IStepsInject { props: IStepsProps; steps: Ref; } declare const _default: import("vue").DefineComponent<{ title: { type: StringConstructor; default: string; }; icon: { type: PropType>; default: string; }; description: { type: StringConstructor; default: string; }; status: { type: StringConstructor; default: string; validator: (val: string) => boolean; }; }, { index: Ref; lineStyle: Ref<{}>; currentStatus: import("vue").ComputedRef; isCenter: import("vue").ComputedRef; isVertical: import("vue").ComputedRef; isSimple: import("vue").ComputedRef; isLast: import("vue").ComputedRef; space: import("vue").ComputedRef; style: import("vue").ComputedRef>; parent: IStepsInject; setIndex: (val: any) => void; calcProgress: (status: any) => void; updateStatus: (activeIndex: any) => void; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{ title?: unknown; icon?: unknown; description?: unknown; status?: unknown; } & { icon: string | Component; title: string; description: string; status: string; } & {}>, { icon: string | Component; title: string; description: string; status: string; }>; export default _default;