import { DragSourceHookSpec, DragObjectWithType, ConnectDragSource, ConnectDragPreview } from '../interfaces'; /** * useDragSource hook * @param sourceSpec The drag source specification * */ export declare function useDrag(spec: DragSourceHookSpec): [CollectedProps, ConnectDragSource, ConnectDragPreview];