import type { RefObject } from "react"; import type { GridColumnModel, GridRowModel } from "../Grid"; import type { CellValidationState } from "../GridColumn"; export interface MiddlePartProps { middleRef: RefObject; onWheel: EventListener; columns: GridColumnModel[]; rows: GridRowModel[]; hoverOverRowKey?: string; setHoverOverRowKey: (key: string | undefined) => void; midGap: number; zebra?: boolean; getRowValidationStatus?: (row: GridRowModel) => CellValidationState | undefined; } export declare function MiddlePart(props: MiddlePartProps): import("react/jsx-runtime").JSX.Element;