import type { ReactNode } from 'react'; import type { EditTableCellConfig } from '../../propsType'; export interface EditableCellProps { value: any; record: any; index: number; dataIndex: string | string[]; editConfig: EditTableCellConfig; displayContent: ReactNode; }