import type { ICell } from './types'; import type { JSX } from 'react'; export interface ICellProps { cellModel: ICell; } export declare const updateRowHeight: (element: HTMLDivElement, cellModel: ICell) => void; export declare const Cell: (props: ICellProps) => JSX.Element;