import React, { RefObject } from 'react'; import { ITableBodyProps } from '../../props'; export interface IRowsProps extends ITableBodyProps { onFirstRowRendered: (firstRowRef: RefObject) => any; treeGroupsExpanded?: any[]; isFirstRowOdd?: boolean; } declare const Rows: React.FunctionComponent; export default Rows;