import * as React from 'react'; import { CellProps } from './index.data'; import RuntimeContext from '../RuntimeContext'; declare class Cell extends React.Component { context: React.ContextType; static contextType: React.Context; constructor(props: CellProps); shouldComponentUpdate(nextProps: CellProps): boolean; render(): JSX.Element | null; } export default Cell;