import type { HeightEntry } from '@mui/x-virtualizer/models'; import type { GridRowId } from "../../../models/gridRows.mjs"; export type { HeightEntry } from '@mui/x-virtualizer/models'; export type HeightCache = Map; export interface GridRowsMetaInternalCache { /** * Map of height cache entries. */ heights: HeightCache; }