import { DragType } from '../../constant/dragTypes'; import { RelateTargetType } from './LocalDragUtils'; interface useLocalDropProps { type?: DragType[]; node: T; } declare function useLocalDrop(data: useLocalDropProps): [T, (ref: U, containerType?: RelateTargetType, compId?: string) => U, DragType[]]; export default useLocalDrop;