interface UseDragCompProps { component: any; type: string; } declare const useDragComp: ({ component, type }: UseDragCompProps) => { isDragging: boolean; drag: import("react-dnd").ConnectDragSource; draggingItem: unknown; }; export default useDragComp;