import React from "react"; import type { UploadProps } from "antd"; interface FileUploadToBlobProps extends UploadProps { onFileUpload: (file: any) => void; accept?: string; multiple?: boolean; disabled?: boolean; uploadText?: string; action?: string; } declare const BADragDropFile: React.FC; export default BADragDropFile;