import { Node } from '@tiptap/core'; import { type DOMOutputSpec, type Node as ProseMirrorNode } from '@tiptap/pm/model'; export interface TuiMentionOptions { HTMLAttributes: Record; renderHTML(props: { options: TuiMentionOptions; node: ProseMirrorNode; }): DOMOutputSpec; } export declare const TuiMention: Node;