export declare function matchParams(rawPath?: string, params?: Record<string, string>): string;
/**
 * 小程序下，获取对应的 H5 路由信息
 * @param {Object} route 路由信息
 * @returns H5 Url
 * @example
 * ```ts
 * getH5CurrentUrl(this.$route);
 * ```
 */
export declare function getH5CurrentUrl(route: {
    name?: string;
    meta?: {
        rawPath?: Array<string>;
    };
    params: Record<string, string>;
}): string;
