import * as React from 'react'; import { PropsWithChildren } from 'react'; export interface ITableRowProps { active?: boolean; hover?: boolean; } export declare const TableRow: React.FC & React.HTMLProps>;