import React from 'react'; import { TableNode } from '../../types/Table'; interface ReadonlyTableComponentProps { hashId: string; children: React.ReactNode; element: TableNode; baseCls: string; } /** * 专门针对 readonly 模式优化的表格组件 * 移除了不必要的滚动监听和复杂的宽度计算 */ export declare const ReadonlyTableComponent: React.FC; export {};