import { Plugin } from 'prosemirror-state'; import { type CoreEditor, Extension } from '@kerebron/editor'; import { type CommandFactories, type CommandShortcuts } from '@kerebron/editor/commands'; export declare class ExtensionHistory extends Extension { name: string; options: { depth: number; newGroupDelay: number; }; getCommandFactories(editor: CoreEditor): Partial; getKeyboardShortcuts(): Partial; getProseMirrorPlugins(): Plugin[]; } //# sourceMappingURL=ExtensionHistory.d.ts.map