import { default as React } from 'react'; import { contentProps } from '../OnChainFormItem'; interface Item { id: string; name: string; age: string; address: string; [k: string]: any; } export interface selectCell { tableKey: any; dataIndex: any; record: Record; } export interface EditableCellProps { loading: boolean; title: React.ReactNode; menuId: string; editable: boolean; children: React.ReactNode; dataIndex: keyof Item; rowKey: string; tableKey: string; record: Item; fillContextMenu?: false; handleSave: (record: Item) => void; handleCellSelected: ({ dataIndex, record, tableKey }: selectCell) => void; handleFill: (record: Item) => void; handleDoubleClick: (record: Item) => boolean; selectedCell?: Record; formitem: contentProps; required: boolean; render: any; highlight: any; isVersion: boolean; renderCacheCell: React.ReactNode; preRender: React.ReactNode; isUser: boolean; apicode: string; canselectcell?: boolean; setInitialState: (s: any) => any; [k: string]: any; } declare const EditableCell: React.FC; export default EditableCell;