/** Join multiple path segments. This function exists since there's no native implementation in browser. */ export declare const joinPath: (...segments: string[]) => string; /** Append path segments to the base URL. */ export declare const appendPath: (baseUrl: URL, ...pathnames: string[]) => URL;