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