import { GridCellValue } from './gridCell'; export interface GridEditCellProps { value: GridCellValue; [prop: string]: any; } export declare type GridEditRowProps = { [field: string]: GridEditCellProps; }; export declare type GridEditRowsModel = { [rowId: string]: GridEditRowProps; };