/** * Visual contract for a rendered mention pill. The TipTap extension in * `mention-editor.tsx` styles its inline atom node with this, and any other * surface that renders a resolved mention (e.g. a sent-message transcript) * uses the same constant so the two stay one visual contract instead of * silently drifting apart. Kept in its own module (no TipTap import) so * importing it never pulls the lazily-loaded editor chunk into a consumer's * bundle. */ export declare const MENTION_PILL_CLASS = "rounded-md bg-primary/10 px-1 py-0.5 font-medium text-primary";