/** * FormatColumn - 表格列格式化组件 * 重构优化:提取公共逻辑,修复 key prop 警告 */ import React from 'react'; import type { ProTableColumnType } from '../../propsType'; export declare const formatColumn: ({ column, originalObj, rowKey, wrapToolTipProps, scroll, onUpdateMinWidth, isInNewRow, diffConfig, }: { column: ProTableColumnType; originalObj: any; rowKey: any; wrapToolTipProps?: any; scroll?: any; onUpdateMinWidth?: any; isInNewRow?: any; diffConfig: any; }) => void; /** * 查找最近的父级className */ export declare const getParentElement: (element: any, name: any, type?: string) => React.ReactNode;