///
import { Upload as BaseUpload } from './Upload';
import { Dragger } from './Dragger';
import type { UploadProps } from './interfaces';
declare type InternalUploadType = typeof BaseUpload;
interface UploadInterface extends InternalUploadType {
(props: React.PropsWithChildren> & React.RefAttributes): React.ReactElement;
Dragger: typeof Dragger;
}
export declare const Upload: UploadInterface;
export {};