import { EditorView } from "./editorview"; import { Command } from "./extension"; import { Facet } from "@codemirror/next/state"; export interface KeyBinding { key?: string; mac?: string; win?: string; linux?: string; run: Command; shift?: Command; scope?: string; preventDefault?: boolean; } export declare const keymap: Facet; export declare function runScopeHandlers(view: EditorView, event: KeyboardEvent, scope: string): boolean; //# sourceMappingURL=keymap.d.ts.map