import { default as React, HTMLAttributes } from 'react'; export interface TableRowProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; } declare const TableRow: React.ForwardRefExoticComponent>; export default TableRow; //# sourceMappingURL=TableRow.d.ts.map