export declare class ActionPartitionHistory { private history; private index; private current; addToHistory(partition: any): void; undo(): any; redo(): any; getCurrent(): any; setCurrent(partition: any): any; getAllHistory(): { history: any[]; index: number; }; clearHistory(): void; canUndo(): boolean; canRedo(): boolean; }