import React from 'react'; export interface RenderCellProps { /** * 数据项 */ c: any; /** * 配置项 */ config: any; /** * 保存方法 */ onSave: any; /** * 当前节点ref */ eventWrapperRef: { current: HTMLDivElement | null; }; } export declare const RenderCell: React.FC;