/** * An implementation of the `History` interface. * @name ServerHistory */ export declare class ServerHistory implements History { scrollRestoration: ScrollRestoration; private _states; private _index; private location; constructor(location: Location); private set index(value); private get index(); get length(): number; get state(): any; go(quanity?: number): void; back(): void; forward(): void; pushState(state: any, _: string | null, url: string): void; replaceState(state: any, _: string | null, url: string): void; } //# sourceMappingURL=ServerHistory.d.ts.map