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