import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { NearestDirectionFunction } from 'ol/array'; import { AttributionLike } from 'ol/source/Source'; import { Config } from 'ol/source/TileJSON'; import BaseEvent from 'ol/events/Event'; import UTFGrid, { Options } from 'ol/source/UTFGrid'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source component for UTFGrid interaction data loaded from TileJSON format. * @name nol-utfgrid-source * @order 1 */ export declare class NolUTFGridSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolPreemptive?: boolean; nolJsonp?: boolean; nolTileJSON?: Config; nolUrl?: string; nolZDirection?: number | NearestDirectionFunction; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): UTFGrid; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useUTFGridSource(): NolUTFGridSourceComponent; export declare function useUTFGridSource(options: InjectOptions & { optional?: false; }): NolUTFGridSourceComponent; export declare function useUTFGridSource(options: InjectOptions): NolUTFGridSourceComponent | null;