import type { Group } from '../../../shapes/Group'; import type { Node } from '../../../Node'; import type { ChartBounds } from '../../chartPrimitives'; /** Wheel zoom on cartesian plot — adjusts minY/maxY in widget state and rebuilds. */ export declare function attachPlotWheelZoom(group: Group, hitArea: Node, bounds: ChartBounds, options?: { minSpan?: number; factor?: number; }): void;