import * as React from 'react'; import { Table } from '../../table/Table'; type DataTableBodyProps = Omit, 'children'> & { idColumn?: string; }; export declare const DragAndDropTableBody: ({ striped, idColumn, ...props }: DataTableBodyProps) => React.JSX.Element; export {};