import { Value } from 'platejs'; import { TPlateEditor } from 'platejs/react'; import { EditorPluginKit } from '../../types/plugin-types'; /** * 完整的编辑器插件集合 * 包含所有功能插件,适用于全功能编辑器 */ export declare const EditorKit: EditorPluginKit; /** * 编辑器实例类型 */ export type MyEditor = TPlateEditor; /** * 获取编辑器实例的 Hook * @returns 编辑器实例 */ export declare const useEditor: () => MyEditor;