import React from 'react'; import { TableCellProps } from './TableCell'; export interface TableRowProps extends React.HTMLProps { /** Child of `Table.Row` which should be one or more `Table.Cell`. */ children: React.ReactElement | React.ReactElement[]; } export declare const TableRow: React.FC; export default TableRow; //# sourceMappingURL=TableRow.d.ts.map