import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { Condition } from 'ol/events/condition'; import BaseEvent from 'ol/events/Event'; import MouseWheelZoom, { Options } from 'ol/interaction/MouseWheelZoom'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * An interaction component that allows the user to zoom the map by scrolling * the mouse wheel. * @name nol-mouse-wheel-zoom-interaction * @order 1 */ export declare class NolMouseWheelZoomInteractionComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolActive: boolean; nolCondition?: Condition; nolOnFocusOnly?: boolean; nolMaxDelta?: number; nolDuration?: number; nolTimeout?: number; nolUseAnchor?: boolean; nolConstrainResolution?: boolean; nolProperties?: Record; nolActiveChange: EventEmitter; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly cdr; private readonly destroyRef; private readonly host; private instance; getInstance(): MouseWheelZoom; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useMouseWheelZoomInteraction(): NolMouseWheelZoomInteractionComponent; export declare function useMouseWheelZoomInteraction(options: InjectOptions & { optional?: false; }): NolMouseWheelZoomInteractionComponent; export declare function useMouseWheelZoomInteraction(options: InjectOptions): NolMouseWheelZoomInteractionComponent | null;