import React, { Component } from "react"; import { ExpandRowProps, SelectRowProps } from ".."; interface BodyProps { keyField: string; data: any[]; columns: any[]; selectRow?: SelectRowProps | undefined; cellEdit: any; tabIndexCell?: boolean; isEmpty?: boolean; noDataIndication?: (() => JSX.Element | string) | JSX.Element | string | undefined; visibleColumnSize?: number; rowStyle?: React.CSSProperties | ((row: any, index: number) => React.CSSProperties); rowClasses?: string | ((row: any, index: number) => string); rowEvents?: Record | null; expandRow?: ExpandRowProps | undefined; className?: string; } declare class Body extends Component { EditingCell: any; RowComponent: any; constructor(props: BodyProps); render(): React.JSX.Element | null; } export default Body;