import { Schema } from 'prosemirror-model'; import { Plugin } from 'prosemirror-state'; interface Options { history: boolean; keyboardShortcuts: boolean; inputRules: boolean; } interface ShortcutOptions { history: boolean; } export declare const getKeyboardShortcuts: (schema: Schema, options: ShortcutOptions) => Plugin[]; declare const getDefaultPlugins: (schema: Schema, options: Options) => Plugin[]; export default getDefaultPlugins;