export type EditorHistoryShortcut = 'redo' | 'undo'; export interface EditorHistoryShortcutEvent { altKey?: boolean; ctrlKey: boolean; key: string; metaKey: boolean; shiftKey: boolean; } export interface EditorHistoryShortcutOptions { isDirty?: boolean; } export declare function getEditorHistoryShortcut(event: EditorHistoryShortcutEvent, options?: EditorHistoryShortcutOptions): EditorHistoryShortcut | null; //# sourceMappingURL=history-shortcuts.d.ts.map