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