import type { NodeSpec, NodeType } from 'prosemirror-model'; import { type CoreEditor, Node } from '@kerebron/editor'; import { type CommandFactories, type CommandShortcuts } from '@kerebron/editor/commands'; import { type InputRule } from '@kerebron/editor/plugins/input-rules'; export declare class NodeDefinitionList extends Node { name: string; requires: string[]; getNodeSpec(): NodeSpec; getInputRules(type: NodeType): InputRule[]; getCommandFactories(editor: CoreEditor, type: NodeType): Partial; getKeyboardShortcuts(): Partial; } //# sourceMappingURL=NodeDefinitionList.d.ts.map