import { type RefObject } from 'react';
import type { Direction } from 'react-beautiful-dnd';
import { type DraggableData } from '../draggable/data';
export declare function useDropTargetForDraggable({ elementRef, data, direction, contextId, isDropDisabled, type, }: {
    elementRef: RefObject<HTMLElement>;
    data: DraggableData;
    direction: Direction;
    contextId: string;
    isDropDisabled: boolean;
    type: string;
}): void;
