import React, { RefAttributes } from 'react';
import { TableRowProps } from './TableRow.types';
/**
 * TableRows are components used to contain cells inside a table
 */
declare const TableRow: React.ForwardRefExoticComponent<RefAttributes<HTMLTableRowElement> & TableRowProps>;
export default TableRow;
