import Editor from '../Editor'; import { KeyPressEvent } from '../inputEvents'; import BaseTool from './BaseTool'; export default class UndoRedoShortcut extends BaseTool { private editor; constructor(editor: Editor); onKeyPress(event: KeyPressEvent): boolean; }