import type { RefObject } from "react"; import type { GridColumnGroupModel, GridColumnModel } from "../Grid"; export interface TopPartProps { topRef: RefObject; onWheel: EventListener; columns: GridColumnModel[]; columnGroups: GridColumnGroupModel[]; midGap: number; bottomShadow?: boolean; } export declare function TopPart(props: TopPartProps): import("react/jsx-runtime").JSX.Element;