import React from "react";
import UppyFileType from "../definitions/UppyFileType";
import UppyType from "../definitions/UppyType";
interface UppyDragDropProps {
    inputRef: React.RefObject<HTMLInputElement>;
    addFiles: (files: UppyFileType[]) => void;
    disabled: boolean;
    uppy: UppyType;
}
declare const UppyDragDrop: ({ inputRef, addFiles, disabled, uppy }: UppyDragDropProps) => React.JSX.Element;
export default UppyDragDrop;
export { UppyDragDropProps };
