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