/// import { CellContentProps } from './CellContent'; declare type CellValueProps = Pick, 'rowIdx' | 'rowData' | 'column' | 'value' | 'isScrolling' | 'context'>; export default function CellValue({ rowIdx, rowData, column, value, isScrolling, context }: CellValueProps): JSX.Element; export {};