import type { Row } from '@tanstack/react-table'; import * as React from 'react'; import { Table } from '../../table/Table'; export type DataTableDraggableRowProps = React.ComponentProps & { row: Row>; idColumn?: string; }; export declare const DragAndDropTableRow: ({ row, idColumn }: DataTableDraggableRowProps) => React.JSX.Element;