import { RenderItemProps } from '../../RenderItem'; import { EditorConfig } from '@editorjs/editorjs'; import './index.less'; export interface ItemEditorProps extends RenderItemProps { contentType?: 'html' | 'blocks'; config?: EditorConfig; onChange?: (value: any, event: any) => void; } declare const ItemEditor: (props: ItemEditorProps) => JSX.Element; export default ItemEditor;