import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { TileSourceEvent } from 'ol/source/Tile'; import { LoadFunction } from 'ol/Tile'; import { AttributionLike } from 'ol/source/Source'; import { ProjectionLike } from 'ol/proj'; import BaseEvent from 'ol/events/Event'; import OGCMapTile, { Options } from 'ol/source/OGCMapTile'; 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 "map" type tiles. * @name nol-ogc-map-tile-source * @order 1 */ export declare class NolOGCMapTileSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolUrl: string; nolContext?: Record; nolMediaType?: string; nolProjection?: ProjectionLike; nolAttributions?: AttributionLike; nolCacheSize?: number; nolCrossOrigin?: string | null; nolInterpolate?: boolean; nolReprojectionErrorThreshold?: number; nolTileLoadFunction?: LoadFunction; nolWrapX?: boolean; nolTransition?: number; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; nolTileloadend: EventEmitter; nolTileloaderror: EventEmitter; nolTileloadstart: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): OGCMapTile; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useOGCMapTileSource(): NolOGCMapTileSourceComponent; export declare function useOGCMapTileSource(options: InjectOptions & { optional?: false; }): NolOGCMapTileSourceComponent; export declare function useOGCMapTileSource(options: InjectOptions): NolOGCMapTileSourceComponent | null;