/** * Creates a new URL by combining the specified URLs * * @since 1.2.5 * @param {string} baseURL The base URL * @param {string} relativeURLs The relative URL * @returns {string} The combined URL */ export declare function combineURLs(baseURL: string, ...relativeURLs: string[]): string;