import * as React from 'react'; import useRowInfo from '../hooks/useRowInfo'; import type { ColumnType, CustomizeComponent, GetRowKey } from '../interface'; export interface BodyRowProps { record: RecordType; index: number; renderIndex: number; className?: string; style?: React.CSSProperties; rowComponent: CustomizeComponent; cellComponent: CustomizeComponent; scopeCellComponent: CustomizeComponent; indent?: number; rowKey: React.Key; getRowKey: GetRowKey; } export declare function getCellProps(rowInfo: ReturnType>, column: ColumnType, colIndex: number, indent: number, index: number): { key: React.Key; fixedInfo: import("../utils/fixUtil").FixedInfo; appendCellNode: React.ReactNode; additionalCellProps: React.TdHTMLAttributes; }; declare function BodyRow(props: BodyRowProps): React.JSX.Element; declare namespace BodyRow { var displayName: string; } declare const _default: typeof BodyRow; export default _default;