UNPKG

287 BTypeScriptView Raw
1import type { DragLayerMonitor } from '../types/index.js';
2/**
3 * useDragLayer Hook
4 * @param collector The property collector
5 */
6export declare function useDragLayer<CollectedProps, DragObject = any>(collect: (monitor: DragLayerMonitor<DragObject>) => CollectedProps): CollectedProps;