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