import type { GridRowId } from '../../types'; export type GridEditState = { columnId: string; rowId: GridRowId; } | null; declare const _default: import("../utils/createReducer").CreateReducerReturn; export default _default; export declare const selectEdit: (state: GridEditState) => GridEditState; export declare const selectIsEditing: (state: GridEditState) => state is { columnId: string; rowId: GridRowId; }; export declare const selectIsEditingCell: (state: GridEditState, { rowId, columnId }: { rowId: GridRowId; columnId: string; }) => boolean; export declare const selectIsEditingCellInColumn: (state: GridEditState, columnId: string) => boolean; //# sourceMappingURL=edit.d.ts.map