UNPKG

@lobehub/editor

Version:

A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.

11 lines (10 loc) 294 B
import { LexicalEditor } from 'lexical'; import { type FC } from 'react'; import { MentionNode } from '../../node/MentionNode'; interface MentionProps { className?: string; editor: LexicalEditor; node: MentionNode; } declare const Mention: FC<MentionProps>; export default Mention;