import { FC } from 'react'; import './index.less'; import { EditorInputBase } from '@lingxiteam/editor-types'; interface FileResourceSelectType { id?: any; label?: any; selectedComp?: any; onChange?: (value: any, fileId?: any) => void; value?: any; hideMoreSelection?: boolean; wrapRef?: any; $$reqPrefix?: string; DSLCore?: any; placeholder?: string; fileType?: string; i18nNode?: EditorInputBase['i18nNode']; getEditorApi: EditorInputBase['getEditorApi']; allowDownload?: boolean; isError?: boolean; appFileTypes?: { fileType: string; fileSubType?: string; }[]; fieldName?: string; } declare const FileResourceSelect: FC; export default FileResourceSelect;