import { ColumnConfig, EditingCellInfo, ObjectForExtending, TableConfig } from '../types'; import { SUBROWS_KEY } from '../feature-tree/constants'; import { RowDetailConfig } from '../feature-row-detail/types'; import { KeyText } from '../feature-key-text/types'; export declare const RenderEditCell: ({ editingCellInfo, column, tableConfigSubRows, tableConfigRowDetailPanel, keyText, }: { editingCellInfo: EditingCellInfo; column: ColumnConfig; tableConfigSubRows: TableConfig[typeof SUBROWS_KEY]; tableConfigRowDetailPanel: RowDetailConfig | undefined; currIndex: number; indexZeroColKey: string | undefined; keyText: KeyText; }) => string | number | boolean | Iterable | import("react/jsx-runtime").JSX.Element | null | undefined;