import type { NodeSpec, NodeType } from 'prosemirror-model'; import { Plugin } from 'prosemirror-state'; import { type CoreEditor, Node } from '@kerebron/editor'; import { type CommandFactories } from '@kerebron/editor/commands'; export declare class NodeCommentAnchor extends Node { name: string; requires: string[]; options: { keepMarks: boolean; }; getNodeSpec(): NodeSpec; getCommandFactories(editor: CoreEditor, type: NodeType): Partial; getProseMirrorPlugins(): Plugin[]; } //# sourceMappingURL=NodeCommentAnchor.d.ts.map