import { ConnectDragSource } from 'react-dnd';
import { iDraggableProps, iDraggedItemType } from './drag-drop.types';
export declare function useDraggable<ItemType extends iDraggedItemType<string>>(props?: iDraggableProps<ItemType>): {
    isDragging: boolean;
    dragRef: ConnectDragSource;
};
