import { FC } from 'react'; import { ModalProps } from 'antd'; import './index.less'; interface EditorModalProps { value: any; onChange: (e: string) => void; modalWidth?: string | number; modalProps: ModalProps; editorProps: any; helpProps: { hidden?: boolean; link?: string; text?: string; }; title: string; } declare const EditorModal: FC; export default EditorModal;