export type onDragUpdateType = (draggedField: string, dropTargetField: string) => void; export declare const useDragHandler: (onDragUpdate: onDragUpdateType) => { dropTargetField: string; onDragStart: (e: any) => void; onDragOver: (e: any) => any; onDrop: (e: any) => void; onDragEnter: (e: any) => void; };