import React from "react"; export interface DataDragAndDropDragHandlerProps { /** * Whether the drag handler is disabled */ /** * Wether dragging is done by keyboard. Used to conditionally render drag indicators. */ keyboardDragging?: boolean; /** * Handle ref is forwarded to the button element serving as drag handle. */ handleRef: React.Ref; alt?: boolean; } /** * DataDragAndDropDragHandler * * 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 DataDragAndDropDragHandler: React.ForwardRefExoticComponent>;