import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import BaseEvent from 'ol/events/Event'; import DoubleClickZoom, { Options } from 'ol/interaction/DoubleClickZoom'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Interaction component that allows the user to zoom by double-clicking on the map. * @name nol-double-click-zoom-interaction * @order 1 */ export declare class NolDoubleClickZoomInteractionComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolActive: boolean; nolDuration?: number; nolDelta?: number; nolProperties?: Record; nolActiveChange: EventEmitter; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly cdr; private readonly destroyRef; private readonly host; private instance; getInstance(): DoubleClickZoom; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useDoubleClickZoomInteraction(): NolDoubleClickZoomInteractionComponent; export declare function useDoubleClickZoomInteraction(options: InjectOptions & { optional?: false; }): NolDoubleClickZoomInteractionComponent; export declare function useDoubleClickZoomInteraction(options: InjectOptions): NolDoubleClickZoomInteractionComponent | null;