import { Value } from 'platejs'; import { TPlateEditor } from 'platejs/react'; import { EditorPluginKit } from '../../types/plugin-types'; /** * 基础编辑器插件集合 * 包含所有核心编辑功能,但不包含: * - AI 功能(AIKit, CopilotKit) * - 协作功能(DiscussionKit, CommentKit, SuggestionKit) * - 多人光标(CursorOverlayKit) */ export declare const BasicEditorKit: EditorPluginKit; /** * 基础编辑器实例类型 */ export type BasicEditor = TPlateEditor; /** * 获取基础编辑器实例的 Hook * @returns 编辑器实例 */ export declare const useBasicEditor: () => BasicEditor;