declare function getSearchParams(path: string): URLSearchParams;
/**
 * Removes search parameters and the fragment
 * from a given URL string.
 */
declare function cleanUrl(path: string): string;

export { cleanUrl, getSearchParams };
