export declare namespace Locations { interface ILocation { readonly origin: string; readonly protocol: string; readonly hostname: string; readonly pathname: string; readonly port: string; readonly hash: string; readonly search: string; } function merge(a: ILocation, b: Partial): ILocation; function toString(location: ILocation): string; function toRelative(location: ILocation): string; }