import type { ZoomChangeType } from '../../../../core/types/zoom.js'; /** * Returns a callback which given a delta in pixels, will apply the zoom interaction and update the state accordingly */ export declare const useApplyZoomDelta: () => (deltaStart: number, deltaEnd: number, type: ZoomChangeType) => void;