declare const _sfc_main: import("vue").DefineComponent<{
    /**
     * 标题
     *
     * @type {String}
     */
    title: {
        type: StringConstructor;
        default: string;
    };
    /**
     * 内容
     *
     * @type {String}
     */
    content: {
        type: StringConstructor;
    };
    /**
     * 当前步骤的状态
     *
     * @type {String}
     */
    status: {
        type: StringConstructor;
        validator(value: string): boolean;
    };
    /**
     * 步骤图标
     *
     * @type {String}
     */
    icon: {
        type: StringConstructor;
    };
}, {
    prefixCls: string;
    data: {
        stepNumber: string;
        currentStatus: string;
        nextError: boolean;
        index: number;
        textDirection: string;
        direction: string;
    };
    wrapClasses: import("vue").ComputedRef<(string | {
        [x: string]: string | boolean | import("vue").Slot;
    })[]>;
    wrapStyles: import("vue").ComputedRef<{
        flexBasis: string;
        maxWidth?: string;
    }>;
    handleClick: () => void;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "on-step"[], "on-step", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
    /**
     * 标题
     *
     * @type {String}
     */
    title: {
        type: StringConstructor;
        default: string;
    };
    /**
     * 内容
     *
     * @type {String}
     */
    content: {
        type: StringConstructor;
    };
    /**
     * 当前步骤的状态
     *
     * @type {String}
     */
    status: {
        type: StringConstructor;
        validator(value: string): boolean;
    };
    /**
     * 步骤图标
     *
     * @type {String}
     */
    icon: {
        type: StringConstructor;
    };
}>> & {
    "onOn-step"?: (...args: any[]) => any;
}, {
    title: string;
}>;
export default _sfc_main;
