/** * A utility for working with URLs */ export declare class UrlUtil { /** * Join the passed URL elements * @param urlElements - The URL elements to join * @returns The concatenated URL elements */ static join(...urlElements: string[]): string; }