/** * A utility to determine whether or not a file is being currently dragged into the window. * * @returns An object with the following arguments: * `areFilesDragging`: True if a file is being dragged over the current window, false otherwise. */ export declare function useFilesDragging(): { areFilesDragging: boolean; };