/// interface DropzoneInterface { handleDrop: (file: any) => void; image: string; isDark?: boolean; isFull?: boolean; rounded?: boolean; } declare const Dropzone: ({ handleDrop, image, isDark, isFull, rounded }: DropzoneInterface) => JSX.Element; export default Dropzone;