import { Component } from 'react'; import { IGridInnerColumn } from './Grid'; import { IGridCellPos } from './types'; interface IGridCellProps { column: IGridInnerColumn; data: Data; pos: IGridCellPos; columnIndex: number; prefix: string; } declare class Cell extends Component> { isInvalidRenderCellText(text: any): boolean; getText: (props: IGridCellProps) => any; onClick: React.MouseEventHandler; shouldComponentUpdate(nextProps: IGridCellProps): boolean; static contextType: import("react").Context>>; render(): JSX.Element; } export default Cell;