import { DragEvent } from 'react'; export declare function useAttachmentDragAndDrop(handleFile: (fileList: FileList) => void): { handleDrag: (e: DragEvent) => void; handleDrop: (e: DragEvent) => void; dragActive: boolean; };