import * as React from 'react'; import { DataIndex, ColumnType, CustomizeComponent, DefaultRecordType, AlignType, CellEllipsisType } from '../interface'; export interface CellProps { prefixCls?: string; className?: string; record?: RecordType; /** `record` index. Not `column` index. */ index?: number; dataIndex?: DataIndex; render?: ColumnType['render']; component?: CustomizeComponent; children?: React.ReactNode; colSpan?: number; rowSpan?: number; ellipsis?: CellEllipsisType; align?: AlignType; shouldCellUpdate?: (record: RecordType, prevRecord: RecordType) => boolean; fixLeft?: number | false; fixRight?: number | false; firstFixLeft?: boolean; lastFixLeft?: boolean; firstFixRight?: boolean; lastFixRight?: boolean; /** @private Used for `expandable` with nest tree */ appendNode?: React.ReactNode; additionalProps?: React.HTMLAttributes; rowType?: 'header' | 'body' | 'footer'; } declare const MemoCell: React.MemoExoticComponent & React.RefAttributes>>; export default MemoCell;