import { HTMLAttributes, ReactElement, Ref } from 'react'; export interface TableRowProps extends HTMLAttributes { ref?: Ref; hover?: boolean; active?: boolean; } declare const TableRow: { ({ ref, hover, active, className, children, ...props }: TableRowProps): ReactElement; displayName: string; }; export default TableRow;