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