import React from 'react'; import './index.less'; interface FileResourceModalType { title?: any; visible?: boolean; onOk?: (value?: any, fileId?: any) => void; onCancel?: () => void; id?: any; selectedComp?: any; wrapRef?: any; DSLCore?: any; value?: any; appFileTypes?: { fileType: string; fileSubType?: string; }[]; getEditorApi: any; fieldName?: string; [key: string]: any; } declare const FileResourceModal: React.FC; export default FileResourceModal;