import { type ExtractPropTypes, type InjectionKey } from 'vue'; export declare type StepsDirection = 'horizontal' | 'vertical'; declare const stepsProps: { active: { type: (NumberConstructor | StringConstructor)[]; default: number; }; direction: { type: import("vue").PropType; default: StepsDirection; }; activeIcon: { type: import("vue").PropType; default: string; }; iconPrefix: StringConstructor; finishIcon: StringConstructor; activeColor: StringConstructor; inactiveIcon: StringConstructor; inactiveColor: StringConstructor; }; export declare type StepsProps = ExtractPropTypes; export declare type StepsProvide = { props: StepsProps; onClickStep: (index: number) => void; }; export declare const STEPS_KEY: InjectionKey; declare const _default: import("vue").DefineComponent<{ active: { type: (NumberConstructor | StringConstructor)[]; default: number; }; direction: { type: import("vue").PropType; default: StepsDirection; }; activeIcon: { type: import("vue").PropType; default: string; }; iconPrefix: StringConstructor; finishIcon: StringConstructor; activeColor: StringConstructor; inactiveIcon: StringConstructor; inactiveColor: StringConstructor; }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click-step"[], "click-step", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; default: StepsDirection; }; activeIcon: { type: import("vue").PropType; default: string; }; iconPrefix: StringConstructor; finishIcon: StringConstructor; activeColor: StringConstructor; inactiveIcon: StringConstructor; inactiveColor: StringConstructor; }>> & { "onClick-step"?: ((...args: any[]) => any) | undefined; }, { active: string | number; direction: StepsDirection; activeIcon: string; }>; export default _default;