/**
 * 根据路由跳转时的参数，提取 path 和其他参数
 * @param route $router.push 或者 $router.replace 的参数
 * @returns 解析结果
 */
export declare function getRouterFuncPath(route: any): {
    path: any;
    other: any;
};
