import React, { HTMLAttributes } from 'react'; export interface DragHandleProps extends HTMLAttributes { dataHook?: string; dragging?: boolean; disabled?: boolean; domRef?: React.Ref; } export declare function DragHandle(props: DragHandleProps): JSX.Element; //# sourceMappingURL=DragHandle.d.ts.map