export declare namespace HashURLs { interface ILocationWithHash { readonly hash?: string; } type QueryOrLocation = string | ILocationWithHash; function parse(queryOrLocation: QueryOrLocation): URLSearchParams; }