import { FC } from 'react'; import '../index.less'; import { EditorInputBase } from '@lingxiteam/editor-types'; interface ContentProps { activeKey?: string; getEditorApi: EditorInputBase['getEditorApi']; value?: string; onChange: (val?: string) => void; searchValue: string; fieldMap: Record; } declare const Content: FC; export default Content;