import { type DragAndDropHandlingProps } from '../types'; export interface UseDragAndDropProps extends Partial> { } export interface UseDragAndDropReturn extends DragAndDropHandlingProps { isDragging: boolean; } export declare const useDragAndDrop: (props?: UseDragAndDropProps) => UseDragAndDropReturn;