import { type ConnectDragPreview, type ConnectDragSource, type DragSourceHookSpec } from 'react-dnd'; export type useMultiDragOneState = [Props, ConnectDragSource, ConnectDragPreview]; export type useMultiDragState = [useMultiDragOneState, Record>]; export declare const useMultiDrag: (spec: DragSourceHookSpec) => useMultiDragState;