export declare namespace UrlUtil { function isValidRedirectUrl(url?: string): boolean | "" | undefined; /** * Decides if a URL is absolute based on whether it contains a valid scheme name, as * defined in RFC 1738. */ function isAbsoluteUrl(url?: string): boolean; function getUrl(...paths: string[]): Promise; function getPath(...paths: string[]): Promise; } //# sourceMappingURL=url-util.d.ts.map