import React, { FC } from 'react'; import { CellValue, TableRowData } from './types'; import { Typography } from '../../types'; declare type Props = { data?: Record; backgroundColor: string; typography: Typography; activeColumn?: number; enableEditMode?: boolean; onCellClick: (e: React.MouseEvent, columnName: string, value: CellValue, idx: number) => void; onCellMouseEnter?: (e: React.MouseEvent, idx: number) => void; onCellMouseLeave?: (e: React.MouseEvent, idx: number) => void; }; declare const TableRow: FC; export default TableRow;