import React from 'react'; export interface ITableRow { id: string; hovering?: boolean; onHover?: () => void; onLeave?: () => void; onClick?: (e: any) => void; children?: any; tableStyle?: 'normal' | 'light'; } declare const TableRow: React.MemoExoticComponent<({ id, onHover, onLeave, onClick, children, hovering }: Readonly) => React.JSX.Element>; export default TableRow;