import { ColumnConfigInternal } from '../types/column-config-internal.type'; import { ColumnConfig, ObjectForExtending } from '../types'; export declare const isServiceEditableColumn: (col: ColumnConfig) => col is ColumnConfigInternal; export declare const isEditableCell: (editingCellConfig: ColumnConfig['editingCell'], row: RowType, tableConfigRowEditable: ((r: RowType) => boolean) | undefined) => boolean;