import React from "react"; import { DragAndDropElement } from "../types"; export interface DragAndDropDragHandlerProps { item: DragAndDropElement; itemRef?: React.RefObject; } /** * DragAndDropDragHandler * * A button component that serves as a drag handle for drag and drop operations. * Can be used to initiate dragging of elements in a data table or list. */ export declare const DragAndDropDragHandler: React.ForwardRefExoticComponent>;