import * as React from 'react'; import { StandardProps } from '..'; export interface TableRowProps extends StandardProps { component?: React.ReactType; hover?: boolean; selected?: boolean; } export type TableRowBaseProps = React.HTMLAttributes; export type TableRowClassKey = 'root' | 'typeHead' | 'typeFooter' | 'hover' | 'selected'; declare const TableRow: React.ComponentType; export default TableRow;