import React, { ReactElement } from 'react'; import { IComponentBaseProps } from '../types'; export type TableRowProps = React.TableHTMLAttributes & IComponentBaseProps & { children?: ReactElement[]; active?: boolean; hover?: boolean; noCell?: boolean; }; declare const TableRow: React.ForwardRefExoticComponent & IComponentBaseProps & { children?: React.ReactElement>[] | undefined; active?: boolean | undefined; hover?: boolean | undefined; noCell?: boolean | undefined; } & React.RefAttributes>; export default TableRow;