import { BlockTypes } from './constants'; export declare class ProcessHistoryHandler { #private; constructor(handleNavigationEvents: boolean); init(maybeSwitchToBlock: (blockType: BlockTypes) => boolean, askForAbort: () => void): BlockTypes | null; registerBlockChange(blockType: BlockTypes): void; dispose(): void; }