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