import { Row, Table } from '@tanstack/react-table'; export interface TableContextData> { onRowClick?: (row: Row) => void; rowsCount?: number; table: Table; }