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