/** * MentionNode — atomic inline node for `@mentions`. * * Cobalt owns the node (serialization + rendering); the host (Prolibu) wires * the search/trigger logic via a Suggestion plugin layered on top. */ import { Node } from '@tiptap/core'; export interface MentionAttributes { id: string; label: string; } declare module '@tiptap/core' { interface Commands { mention: { /** Insert a mention node. */ insertMention: (id: string, label: string) => ReturnType; }; } } export declare const MentionNode: Node; export default MentionNode; //# sourceMappingURL=mention-node.d.ts.map