import type { UseDroppableProps } from "./types";
export declare function useDroppable(props?: UseDroppableProps): {
    droppableRef: (node: any) => void;
    isOver: boolean;
};
