export declare function isAbsoluteUrl(url: string): boolean; export declare function isLocalUrl(hostname: string): boolean; export declare function isDomainUrl(hostname: string): boolean; export declare function splitHostnameByHyphen(hostname: string): string[]; export declare function combineUrl(baseUrl: string, relativeUrl: string): string; export declare function combinePath(basePath: string, path: string): string; export declare function buildUrl(baseUrl: string, relativeUrl: string): string; export declare function compilePath(path: string, params?: object): string; export declare function objectToQueryString(object?: Record): string | undefined; export declare function getApplicationClient(): "browser" | "wechatminiapp"; export declare function waitDone(callBack: () => boolean, delay: number): Promise;