import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { Feature } from 'ol'; import { Geometry } from 'ol/geom'; import { ObjectEvent } from 'ol/Object'; import { TileSourceEvent } from 'ol/source/Tile'; import { AttributionLike } from 'ol/source/Source'; import { ProjectionLike } from 'ol/proj'; import { NearestDirectionFunction } from 'ol/array'; import BaseEvent from 'ol/events/Event'; import FeatureFormat from 'ol/format/Feature'; import Tile from 'ol/VectorTile'; import OGCVectorTile, { Options } from 'ol/source/OGCVectorTile'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source component for map tiles from an [OGC API - Tiles](https://ogcapi.ogc.org/tiles/) * service that provides "vector" type tiles. * @name nol-ogc-vector-tile-source * @order 1 */ export declare class NolOGCVectorTileSourceComponent implements NolPrefixedOptions>>, OnInit, OnChanges, OnDestroy { nolUrl: string; nolContext?: Record; nolFormat: FeatureFormat; nolMediaType?: string; nolAttributions?: AttributionLike; nolAttributionsCollapsible?: boolean; nolCacheSize?: number; nolOverlaps?: boolean; nolProjection?: ProjectionLike; nolTileClass?: typeof Tile; nolTransition?: number; nolWrapX?: boolean; nolZDirection?: number | NearestDirectionFunction; nolCollections?: string[]; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; nolTileloadend: EventEmitter; nolTileloaderror: EventEmitter; nolTileloadstart: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): OGCVectorTile>; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useOGCVectorTileSource(): NolOGCVectorTileSourceComponent; export declare function useOGCVectorTileSource(options: InjectOptions & { optional?: false; }): NolOGCVectorTileSourceComponent; export declare function useOGCVectorTileSource(options: InjectOptions): NolOGCVectorTileSourceComponent | null;