/** * An in-memory implementation of `Location`. * @name ServerLocation */ export declare class ServerLocation implements Location { get ancestorOrigins(): DOMStringList; get hash(): string; set hash(value: string); get host(): string; set host(value: string); get hostname(): string; set hostname(value: string); get pathname(): string; set pathname(value: string); get port(): string; set port(value: string); get protocol(): string; set protocol(value: string); get search(): string; set search(value: string); get origin(): string; href: string; private history; constructor(href: string); assign(url: string): void; reload(): void; replace(url: string): void; toString(): string; setHistory(history: History): this; } //# sourceMappingURL=ServerLocation.d.ts.map