/// /** * @param uploadStatus * @param acceptedFiles * @param dropzoneText * @param onChangeMethod * @param errorMessage * @param maxFileSize * @returns {JSX.Element} * @constructor */ declare function DragAndDrop({ uploadStatus, acceptedFiles, dropzoneText, onChangeMethod, errorMessage, maxFileSize }: { uploadStatus?: string | undefined; acceptedFiles?: never[] | undefined; dropzoneText?: string | undefined; onChangeMethod?: null | undefined; errorMessage?: string | undefined; maxFileSize?: number | undefined; }): JSX.Element; export default DragAndDrop;