import { LexicalEditor } from 'lexical'; import { MutableRefObject } from 'react'; import * as React from 'react'; /** * TODO: 最新版 lexical 已经内置在 lexical-react package 中 * * Use this plugin to access the editor instance outside of the * LexicalComposer. This can help with things like buttons or other * UI components that need to update or read EditorState but need to * be positioned outside the LexicalComposer in the React tree. */ export declare function EditorRefPlugin({ editorRef, }: { editorRef: React.RefCallback | MutableRefObject; }): null;