///
import Dragger from './Dragger';
import type { UploadProps } from './Upload';
import InternalUpload from './Upload';
export { UploadProps, UploadListProps, UploadChangeParam, RcFile } from './interface';
export { DraggerProps } from './Dragger';
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;