import { DragSourceSpec } from '../core/types'; export interface UseDragReturn { dragRef: (node: HTMLElement | null) => void; isDragging: boolean; canDrag: boolean; handlerId: string; } export declare function useDrag(spec: DragSourceSpec): UseDragReturn;