import { Node as PMNode, NodeSpec, type NodeType } from 'prosemirror-model'; import { type CoreEditor, Node } from '@kerebron/editor'; import type { CommandFactories, CommandShortcuts } from '@kerebron/editor/commands'; export declare class NodeListItem extends Node { name: string; requires: string[]; attributes: { value: { default: undefined; }; type: { default: undefined; fromDom(element: HTMLElement): any; toDom(node: PMNode): any; }; }; getNodeSpec(): NodeSpec; getCommandFactories(editor: CoreEditor, type: NodeType): Partial; getKeyboardShortcuts(): Partial; } //# sourceMappingURL=NodeListItem.d.ts.map