export declare const useCommandHistory: () => {
    historyManager: import("../utils/historyManager").HistoryManager | undefined;
    addHistory: (cmd: Function, undo: Function, post: Function, mustExec: boolean, type: number, overwriteIfSameType: boolean, keepUndo: boolean) => void;
    undoHistory: () => void;
    redoHistory: () => void;
};
