import React from 'react'; import { EditConfig, Record } from './index'; interface BodyCellProps { record: T; dataIndex: string; rowIndex: number; editConfig: EditConfig; sortable: boolean; wrap: boolean; light: boolean; className: string; style: React.CSSProperties; [k: string]: any; } declare const BodyCell: ({ record, dataIndex, rowIndex, editConfig, sortable, wrap, light, children, className, style, ...props }: BodyCellProps) => React.JSX.Element; export default BodyCell;