import { RefObject } from "react"; import "./TopPart.css"; import { 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): JSX.Element;