export declare class HistoryUpdater {
    private state;
    private queryParamKey;
    private window;
    constructor(state: any, queryParamKey: string, window: Window);
    static create(state: any, queryParamKey: string): HistoryUpdater;
    push(): void;
    replace(): void;
    private stringifyToUrl;
}
