import { ReactElement } from 'react'; import { EditorRawPlugin } from '../types'; import { editorPluginLayoutStore } from './layout-store-plugins/editor-plugin-layout-store'; /** * 编辑器渲染插件属性扩展 */ export interface EditorPluginRenderPropertiesExt { editor: { /** * 渲染 */ render: () => ReactElement; }; } /** * 编辑器渲染插件 */ export declare const editorPluginRender: EditorRawPlugin; //# sourceMappingURL=editor-plugin-render.d.ts.map