import { type EventHandlerResult } from '../EventHandlerResult'; import type Grid from '../Grid'; import GridMouseHandler from '../GridMouseHandler'; import { type GridPoint } from '../GridUtils'; declare class GridRowMoveMouseHandler extends GridMouseHandler { cursor: string; private draggingOffset?; onDown(gridPoint: GridPoint, grid: Grid): EventHandlerResult; onDrag(gridPoint: GridPoint, grid: Grid): EventHandlerResult; onUp(gridPoint: GridPoint, grid: Grid): EventHandlerResult; } export default GridRowMoveMouseHandler; //# sourceMappingURL=GridRowMoveMouseHandler.d.ts.map