import { SimpleFeatureCollection, Position } from "../utils/geojson-types.js"; import { PointerMoveEvent, StartDraggingEvent, StopDraggingEvent } from "../edit-modes/types.js"; import { EditAction, ModeHandler } from "./mode-handler.js"; export declare class ScaleHandler extends ModeHandler { _isScalable: boolean; _geometryBeingScaled: SimpleFeatureCollection | null | undefined; handlePointerMove(event: PointerMoveEvent): { editAction: EditAction | null | undefined; cancelMapPan: boolean; }; handleStartDragging(event: StartDraggingEvent): EditAction | null | undefined; handleStopDragging(event: StopDraggingEvent): EditAction | null | undefined; getCursor({ isDragging }: { isDragging: boolean; }): string; getScaleAction(startDragPoint: Position, currentPoint: Position, editType: string): EditAction; } //# sourceMappingURL=scale-handler.d.ts.map