import { FC } from 'react'; import './index.less'; import { EventInputBaseType } from '../../../EventInputBaseType'; interface UploadTempFileProps { fields: any; tempFileName: string; onChange: (params: any) => void; tempValue: { fileCode?: any; maxRowSize?: any; rows?: any[]; }; editorPluginInst: EventInputBaseType['editorPluginInst']; } declare const UploadTempFile: FC; export default UploadTempFile;