import type { CustomRequestOptions, FileInfo, FuncOrRecordOrUndef, OnChange, OnDownload, OnFinish, OnRemove, OnRetry, SettledFileInfo, UploadInst as UploadInstInner } from './interface'; export type { UploadProps } from './Upload'; export interface UploadInst extends UploadInstInner { } export type UploadFileInfo = FileInfo; export type UploadCustomRequestOptions = CustomRequestOptions; export type UploadSettledFileInfo = SettledFileInfo; export type UploadOnChange = OnChange; export type UploadOnFinish = OnFinish; export type UploadOnRemove = OnRemove; export type UploadOnDownload = OnDownload; export type UploadOnRetry = OnRetry; export type { FuncOrRecordOrUndef };