import type { FunctionComponent } from 'react';
export interface DragHandleProps {
    setActivatorNodeRef: (element: HTMLElement | null) => void;
    listeners: any;
    attributes: any;
}
/**
 * Shared drag handle component used by both horizontal and vertical layouts.
 * Renders the drag icon with proper event handlers for drag and drop functionality.
 */
export declare const DragHandle: FunctionComponent<DragHandleProps>;
//# sourceMappingURL=DragHandle.d.ts.map