import type { Editor } from '../Editor';
import type { Schema } from 'prosemirror-model';
import type { Commands } from '../types';
export default function buildEditorKeyMaps({ schema, commands, }: {
    schema: Schema;
    commands: Commands;
    editor: Editor;
}): Record<string, any>;
//# sourceMappingURL=keymap.d.ts.map