/// import { GridColumnModel, GridRowModel } from "../Grid"; export interface TableBodyProps { columns: GridColumnModel[]; rows: GridRowModel[]; hoverRowKey?: string; setHoverRowKey: (key: string | undefined) => void; gap?: number; zebra?: boolean; } export declare function TableBody(props: TableBodyProps): JSX.Element;