/** * Cleans a URL by removing the query string and fragment (hash portion). * @param {string} [url] - The original URL to be cleaned. * @param {boolean} [keepHash=false] - Whether to preserve the hash portion of the URL. * @returns {string} The cleaned URL. */ export function cleanURL(url?: string, keepHash?: boolean): string; //# sourceMappingURL=clean-url.d.ts.map