import { FC } from 'react'; import type { TooltipProps } from 'antd'; interface Props { valueType?: string; node?: any; value?: any; currentValue?: any; copyable?: boolean; ellipsis?: any; width?: number | string; originalValue?: any; toolTipProps?: TooltipProps; minWidth?: number; isInNewRowFlag?: boolean; isChanged?: boolean; /** 新增单元格字段 */ isAddCell?: boolean; /** 表格透传下来的scroll配置 */ scroll?: any; } declare const RenderColumn: FC; export default RenderColumn;