import React from 'react'; import type { GridCellParams, GridDensity, GridRowData } from './types'; interface DataGridCellEditorProps { params: GridCellParams; density: GridDensity; processRowUpdate?: (newRow: TRow, oldRow: TRow) => TRow | Promise; onProcessRowUpdateError?: (error: Error) => void; onCommit: (updatedRow: TRow) => void; onCancel: () => void; testID?: string; } declare function DataGridCellEditorInner({ params, density, processRowUpdate, onProcessRowUpdateError, onCommit, onCancel, testID, }: DataGridCellEditorProps): React.ReactElement; export declare const DataGridCellEditor: typeof DataGridCellEditorInner; export {}; //# sourceMappingURL=DataGridCellEditor.d.ts.map