import * as React from 'react'; import { GridCellIdentifier } from '../../hooks/features/focus/gridFocusState'; import { GridRowModel, GridCellParams, GridRowId, GridEditRowProps, GridStateColDef } from '../../models'; interface RowCellsProps { cellClassName?: string; columns: GridStateColDef[]; extendRowFullWidth: boolean; firstColIdx: number; id: GridRowId; hasScrollX: boolean; hasScrollY: boolean; height: number; getCellClassName?: (params: GridCellParams) => string; lastColIdx: number; row: GridRowModel; rowIndex: number; showCellRightBorder: boolean; cellFocus: GridCellIdentifier | null; cellTabIndex: GridCellIdentifier | null; isSelected: boolean; editRowState?: GridEditRowProps; } export declare const GridRowCells: React.NamedExoticComponent; export {};