/// import Dragger from './Dragger'; import type { UploadProps } from './Upload'; import InternalUpload from './Upload'; export { DraggerProps } from './Dragger'; export { RcFile, UploadChangeParam, UploadFile, UploadListProps, UploadProps } from './interface'; declare type InternalUploadType = typeof InternalUpload; interface UploadInterface extends InternalUploadType { (props: React.PropsWithChildren> & React.RefAttributes): React.ReactElement; Dragger: typeof Dragger; LIST_IGNORE: string; } declare const Upload: UploadInterface; export default Upload;