type UseDragAndDropProps = { handleFiles: (files: FileList) => void; }; export declare function useDragAndDrop({ handleFiles }: UseDragAndDropProps): { isDragging: boolean; handleDragOver: (e: React.DragEvent) => void; handleDragLeave: () => void; handleDrop: (e: React.DragEvent) => void; }; export {};