import * as React from 'react'; import { Table } from '../table/Table'; type DataTableBodyProps = Omit, 'children'> & { rowAction?: (row: Record, event: React.MouseEvent) => void; }; export declare const DataTableBody: ({ striped, rowAction, ...props }: DataTableBodyProps) => React.JSX.Element; export {};