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