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