import type { FC } from "react"; import { type ReactNodeViewProps } from "@tiptap/react"; /** * React node-view for a mention/tag pill. ProseMirror renders the mention as a * plain span (see the extension's `renderHTML`, which is also what `getHTML()` * serializes); this view replaces that span *in the editor* so the pill can be * wrapped in the design-system Tooltip. * * The tooltip shows the underlying `id` (e.g. "greeting.9484") behind the * display `label` (e.g. "greeting"). It is omitted when the id is absent or * identical to the label, since there's nothing extra to reveal. */ export declare const MentionView: FC;