import { IconProps } from '../Icons/Icon.models'; export type DragHandleProps = Omit & { /** Optional prop to add a test id to the DragHandle for QA testing */ qaTestId?: string; }; declare const DragHandle: ({ iconSize, qaTestId, }: DragHandleProps) => import("react/jsx-runtime").JSX.Element; export default DragHandle;