import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import BaseEvent from 'ol/events/Event'; import PinchRotate, { Options } from 'ol/interaction/PinchRotate'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * An interaction component allows the user to rotate the map by twisting with * two fingers on a touch screen. * @name nol-pinch-rotate-interaction * @order 1 */ export declare class NolPinchRotateInteractionComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolActive: boolean; nolDuration?: number; nolThreshold?: number; nolProperties?: Record; nolActiveChange: EventEmitter; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly cdr; private readonly destroyRef; private readonly host; private instance; getInstance(): PinchRotate; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function usePinchRotateInteraction(): NolPinchRotateInteractionComponent; export declare function usePinchRotateInteraction(options: InjectOptions & { optional?: false; }): NolPinchRotateInteractionComponent; export declare function usePinchRotateInteraction(options: InjectOptions): NolPinchRotateInteractionComponent | null;