declare const _sfc_main: import("vue").DefineComponent<{
    /**
     * 路由跳转对象，同 vue-router 的 to
     *
     * @type {String, Object}
     */
    to: {
        type: (ObjectConstructor | StringConstructor)[];
        default: string;
    };
    /**
     * 在使用 to 进行路由跳转时，启用 replace 将不会向 history 添加新记录
     *
     * @type {Boolean}
     */
    replace: {
        type: BooleanConstructor;
        default: boolean;
    };
}, {
    prefixCls: string;
    divider: string;
    classes: import("vue").ComputedRef<(string | {
        "is-link": string | Record<string, any>;
    })[]>;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
    /**
     * 路由跳转对象，同 vue-router 的 to
     *
     * @type {String, Object}
     */
    to: {
        type: (ObjectConstructor | StringConstructor)[];
        default: string;
    };
    /**
     * 在使用 to 进行路由跳转时，启用 replace 将不会向 history 添加新记录
     *
     * @type {Boolean}
     */
    replace: {
        type: BooleanConstructor;
        default: boolean;
    };
}>>, {
    to: string | Record<string, any>;
    replace: boolean;
}>;
export default _sfc_main;
