import { type EventHandlerResult } from '../EventHandlerResult'; import type Grid from '../Grid'; import GridMouseHandler from '../GridMouseHandler'; import { type GridPoint } from '../GridUtils'; /** * Detect when the tree expand/collapse button is clicked */ declare class GridRowTreeMouseHandler extends GridMouseHandler { static isInTreeBox(gridPoint: GridPoint, grid: Grid): boolean; onDown(gridPoint: GridPoint, grid: Grid): EventHandlerResult; onClick(gridPoint: GridPoint, grid: Grid, event: React.MouseEvent): EventHandlerResult; } export default GridRowTreeMouseHandler; //# sourceMappingURL=GridRowTreeMouseHandler.d.ts.map