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) 338 B
import { type FC, type ReactNode } from 'react'; interface MathEditProps { /** 自定义渲染组件,接收 MathEditorContent 作为子节点 */ renderComp?: FC<{ children: ReactNode; open?: boolean; }>; } declare const MathEdit: import("react").NamedExoticComponent<MathEditProps>; export default MathEdit;