import { type Editor, type Mark as Mark2, type Node as Node2 } from '@tiptap/core'; import { type Mark, type Node } from '@tiptap/pm/model'; export declare class TuiMarkdownSerializer { protected readonly editor: Editor; constructor(editor: Editor); get nodes(): readonly Node[]; get marks(): readonly Mark[]; serialize(content: Node): any; serializeNode(node: Node2): any; serializeMark(mark: Mark2): any; }