import type { GridColumnGroupModel, GridColumnModel } from "../Grid"; export interface TopRightPartProps { onWheel: EventListener; columns: GridColumnModel[]; columnGroups: GridColumnGroupModel[]; leftShadow?: boolean; bottomShadow?: boolean; } export declare function TopRightPart(props: TopRightPartProps): import("react/jsx-runtime").JSX.Element | null;