import * as React from 'react'; import type { GetRowKey, Key, GetComponentProps } from '../interface'; export interface BodyProps { data: readonly RecordType[]; getRowKey: GetRowKey; measureColumnWidth: boolean; expandedKeys: Set; onRow: GetComponentProps; rowExpandable: (record: RecordType) => boolean; emptyNode: React.ReactNode; childrenColumnName: string; } declare function Body({ data, getRowKey, measureColumnWidth, expandedKeys, onRow, rowExpandable, emptyNode, childrenColumnName, }: BodyProps): JSX.Element; declare const MemoBody: React.MemoExoticComponent; export default MemoBody;