import { EditingMode } from '../enums'; import { Column } from '../models'; import { Cell } from '../Models/Cell'; export declare const isEditableCell: (editingMode: EditingMode, column: Column, rowEditableCells: Cell[]) => boolean; export declare const addItemToEditableCells: (item: Cell, editableCells: Cell[]) => Cell[]; export declare const removeItemFromEditableCells: (item: Cell, editableCells: Cell[]) => Cell[];