import { GridRowId, GridRowModel } from '../../../models/gridRows'; export interface InternalGridRowsState { idRowsLookup: Record; allRows: GridRowId[]; totalRowCount: number; } export declare const getInitialGridRowState: () => InternalGridRowsState;