declare function __VLS_template(): {
    attrs: Partial<{}>;
    slots: {
        title?(_: {}): any;
        default?(_: {}): any;
    };
    refs: {};
    rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    /**
     * 步骤条的类型，0 - 无序号，1 - 有序号
     */
    type: {
        type: NumberConstructor;
        default: number;
    };
    /**
     * 步骤条的序号，type 为 1 时有效
     */
    num: {
        type: NumberConstructor;
        default: number;
    };
    /**
     * 步骤条的序号的类名，type 为 1 时有效
     */
    numClass: {
        type: StringConstructor;
        default: string;
    };
    /**
     * 步骤条的标题
     */
    title: {
        type: StringConstructor;
        default: string;
    };
    /**
     * 步骤条左侧步骤的样式
     */
    stepLeftStyle: {
        type: ObjectConstructor;
        default: {};
    };
    /**
     * 步骤条左侧连接线的样式
     */
    stepLineStyle: {
        type: ObjectConstructor;
        default: {};
    };
    /**
     * 步骤条右侧内容的样式
     */
    stepRightStyle: {
        type: ObjectConstructor;
        default: {};
    };
    /**
     * 步骤条内容的样式
     */
    stepContentStyle: {
        type: ObjectConstructor;
        default: {};
    };
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    /**
     * 步骤条的类型，0 - 无序号，1 - 有序号
     */
    type: {
        type: NumberConstructor;
        default: number;
    };
    /**
     * 步骤条的序号，type 为 1 时有效
     */
    num: {
        type: NumberConstructor;
        default: number;
    };
    /**
     * 步骤条的序号的类名，type 为 1 时有效
     */
    numClass: {
        type: StringConstructor;
        default: string;
    };
    /**
     * 步骤条的标题
     */
    title: {
        type: StringConstructor;
        default: string;
    };
    /**
     * 步骤条左侧步骤的样式
     */
    stepLeftStyle: {
        type: ObjectConstructor;
        default: {};
    };
    /**
     * 步骤条左侧连接线的样式
     */
    stepLineStyle: {
        type: ObjectConstructor;
        default: {};
    };
    /**
     * 步骤条右侧内容的样式
     */
    stepRightStyle: {
        type: ObjectConstructor;
        default: {};
    };
    /**
     * 步骤条内容的样式
     */
    stepContentStyle: {
        type: ObjectConstructor;
        default: {};
    };
}>> & Readonly<{}>, {
    type: number;
    title: string;
    num: number;
    numClass: string;
    stepLeftStyle: Record<string, any>;
    stepLineStyle: Record<string, any>;
    stepRightStyle: Record<string, any>;
    stepContentStyle: Record<string, any>;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
