import { Dictionary } from '../options'; import { RowKey } from './data'; export type CellHeightMap = Dictionary>; export interface RenderState { hoveredRowKey: RowKey | null; cellHeightMap: CellHeightMap; }