import type { AgZoomAnchorPoint } from 'ag-charts-community'; import { ChartAxisDirection } from 'ag-charts-core'; import type { BoxBounds, ZoomMinMax, ZoomState } from 'ag-charts-core'; export declare class ZoomAxisDragger { private coords?; private oldZoom?; update(event: { currentX: number; currentY: number; }, direction: ChartAxisDirection, anchor: AgZoomAnchorPoint, bbox: BoxBounds, zoom?: ZoomState, axisZoom?: ZoomMinMax): ZoomMinMax; stop(): void; private updateCoords; private updateZoom; }