import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { LoadFunction } from 'ol/Tile'; import { NearestDirectionFunction } from 'ol/array'; import { Size } from 'ol/size'; import { AttributionLike } from 'ol/source/Source'; import { TileSourceEvent } from 'ol/source/Tile'; import BaseEvent from 'ol/events/Event'; import TileJSON, { Config, Options } from 'ol/source/TileJSON'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source component for tile data in TileJSON format. * @name nol-tile-json-source * @order 1 */ export declare class NolTileJSONSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolCacheSize?: number; nolCrossOrigin?: string | null; nolInterpolate?: boolean; nolJsonp?: boolean; nolReprojectionErrorThreshold?: number; nolTileJSON?: Config; nolTileLoadFunction?: LoadFunction; nolTileSize?: number | Size; nolUrl?: string; nolWrapX?: boolean; nolTransition?: number; nolZDirection?: number | NearestDirectionFunction; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; nolTileloadend: EventEmitter; nolTileloaderror: EventEmitter; nolTileloadstart: EventEmitter; private readonly cdr; private readonly destroyRef; private readonly host; private instance; getInstance(): TileJSON; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function injectTileJSONSource(): NolTileJSONSourceComponent; export declare function injectTileJSONSource(options: InjectOptions & { optional?: false; }): NolTileJSONSourceComponent; export declare function injectTileJSONSource(options: InjectOptions): NolTileJSONSourceComponent | null;