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 KeyboardZoom, { Options } from 'ol/interaction/KeyboardZoom'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Interaction component that allows the user to zoom the map using keyboard `+` and `-`. * @name nol-keyboard-zoom-interaction * @order 1 */ export declare class NolKeyboardZoomInteractionComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolActive: boolean; nolDuration?: number; nolCondition?: Condition; nolDelta?: number; nolProperties?: Record; nolActiveChange: EventEmitter; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly cdr; private readonly destroyRef; private readonly host; private instance; getInstance(): KeyboardZoom; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useKeyboardZoomInteraction(): NolKeyboardZoomInteractionComponent; export declare function useKeyboardZoomInteraction(options: InjectOptions & { optional?: false; }): NolKeyboardZoomInteractionComponent; export declare function useKeyboardZoomInteraction(options: InjectOptions): NolKeyboardZoomInteractionComponent | null;