import { FileFormControlValue } from '../../form-control'; declare type UploadFile = FileFormControlValue & { name: string; url: string; }; declare type FileUploadValue = UploadFile[]; declare type FileUploadRequestOption = { name?: string; method?: string; data?: { [key: string]: any; }; withCredentials?: boolean; }; export { UploadFile, FileUploadValue, FileUploadRequestOption };