import React from 'react'; import './index.less'; import { I18nItemType } from '@lingxiteam/editor-types'; interface ImageUploadModalType { visible?: boolean; onOk?: (value?: any, fileId?: any) => void; onCancel?: () => void; wrapRef?: any; $$reqPrefix?: string; fileType?: string; i18nNode?: React.ReactNode; languages?: I18nItemType['languages']; getEditorApi: any; [key: string]: any; } declare const ImageUploadModal: React.FC; export default ImageUploadModal;