/** * Browser-compatible implementation of node:url's format function. * Uses the native URL API available in both Node.js and browsers. */ import type { UrlWithParsedQuery } from './url-types.js'; /** * Format a URL object into a URL string, compatible with node:url format function. * @param urlObj - The URL object to format * @returns Formatted URL string */ export declare function format(urlObj: Partial): string; //# sourceMappingURL=url-format.d.ts.map