import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { Collection, Feature } from 'ol'; import { ObjectEvent } from 'ol/Object'; import { Condition } from 'ol/events/condition'; import { Geometry } from 'ol/geom'; import BaseEvent from 'ol/events/Event'; import Layer from 'ol/layer/Layer'; import LayerRenderer from 'ol/renderer/Layer'; import Source from 'ol/source/Source'; import Translate, { FilterFunction, Options, TranslateEvent } from 'ol/interaction/Translate'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * An interaction component for translating (moving) features. * @name nol-translate-interaction * @order 1 */ export declare class NolTranslateInteractionComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolActive: boolean; nolCondition?: Condition; nolFeatures?: Collection>; nolLayers?: Layer>[] | ((layer: Layer) => boolean); nolFilter?: FilterFunction; nolHitTolerance?: number; nolProperties?: Record; nolActiveChange: EventEmitter; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; noltranslateend: EventEmitter; noltranslatestart: EventEmitter; noltranslating: EventEmitter; private readonly cdr; private readonly destroyRef; private readonly host; private instance; getInstance(): Translate; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useTranslateInteraction(): NolTranslateInteractionComponent; export declare function useTranslateInteraction(options: InjectOptions & { optional?: false; }): NolTranslateInteractionComponent; export declare function useTranslateInteraction(options: InjectOptions): NolTranslateInteractionComponent | null;