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 { StyleLike } from 'ol/style/Style'; import BaseEvent from 'ol/events/Event'; import Layer from 'ol/layer/Layer.js'; import LayerRenderer from 'ol/renderer/Layer.js'; import Source from 'ol/source/Source.js'; import Select, { FilterFunction, Options, SelectEvent } from 'ol/interaction/Select'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * An interaction component for selecting vector features. * @name nol-select-interaction * @order 1 */ export declare class NolSelectInteractionComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolActive: boolean; nolAddCondition?: Condition; nolCondition?: Condition; nolLayers?: Layer>[] | ((layer: Layer) => boolean); nolStyle?: StyleLike | null; nolRemoveCondition?: Condition; nolToggleCondition?: Condition; nolMulti?: boolean; nolFeatures?: Collection>; nolFilter?: FilterFunction; nolHitTolerance?: number; nolProperties?: Record; nolActiveChange: EventEmitter; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; nolSelect: EventEmitter; private readonly cdr; private readonly destroyRef; private readonly host; private instance; getInstance(): Select; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useSelectInteraction(): NolSelectInteractionComponent; export declare function useSelectInteraction(options: InjectOptions & { optional?: false; }): NolSelectInteractionComponent; export declare function useSelectInteraction(options: InjectOptions): NolSelectInteractionComponent | null;