import { CapableElement, ChartZoomOptions, ResolvedOptions } from "./options"; export declare class ChartZoom { options: ResolvedOptions; private touch; private mouse; private wheel; private scaleUpdated; constructor(el: CapableElement, options?: ChartZoomOptions); onScaleUpdated(callback: () => void): void; /** Call this when scale updated outside */ update(): void; }