/** * A drag handle for columns in the column settings. * @internal */ export declare const ColumnOrderDragHandle: ({ columnKey, columnId, isDraggingActive, }: { /** * The unique key of the column. */ columnKey: string; /** * The id of the column. */ columnId: string; /** * Whether dragging is currently active. */ isDraggingActive: boolean; }) => import("react/jsx-runtime").JSX.Element;