import { type EventHandlerResult } from '../EventHandlerResult'; import type Grid from '../Grid'; import GridMouseHandler from '../GridMouseHandler'; import { type GridPoint } from '../GridUtils'; /** * Used to eat the mouse event in the bottom right corner of the scroll bar */ declare class GridScrollBarCornerMouseHandler extends GridMouseHandler { isInCorner(gridPoint: GridPoint, grid: Grid): boolean; onDown(gridPoint: GridPoint, grid: Grid): EventHandlerResult; onUp(gridPoint: GridPoint, grid: Grid): EventHandlerResult; onClick(gridPoint: GridPoint, grid: Grid): EventHandlerResult; } export default GridScrollBarCornerMouseHandler; //# sourceMappingURL=GridScrollBarCornerMouseHandler.d.ts.map