import { type RefObject } from 'react'; import type { UseDragAndDropOptions } from './types.ts'; /** * Hook of simple "drag and drop". * @param ref Target element. * @param options Options. */ export declare function useDragAndDrop(ref: RefObject | RefObject | RefObject, { strategy, disabled, onGrab, onMove, onDrop, plugins, reuseEvent, extraDeps, }?: UseDragAndDropOptions): void;