export declare class History { back(): void; forward(): void; go(delta?: number): void; length(): number; state(): T; pushState(state: T, title: string, url?: string): void; replaceState(state: T, title: string, url?: string): void; onChange(callback: (state: T) => void): this; }