type Params = { disabled?: boolean; labelRef: any; validateFile: (file: File) => boolean; handleChange?: (file: File) => void; handleFileChange?: (file: File) => void; handleDirectoryDrop?: (e: any) => void; }; /** * * @param data - * @returns boolean - the state of whether the user is dragging a file into the drop zone or not. * * @internal */ export default function useDragging({ disabled, labelRef, validateFile, handleChange, handleFileChange, handleDirectoryDrop, }: Params): boolean; export {};