import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ImageTile } from 'ol'; import { ObjectEvent } from 'ol/Object'; import { LoadFunction } from 'ol/Tile'; import { NearestDirectionFunction } from 'ol/array'; import { ProjectionLike } from 'ol/proj'; import { AttributionLike } from 'ol/source/Source'; import { TileSourceEvent } from 'ol/source/Tile'; import BaseEvent from 'ol/events/Event'; import WMTS, { Options, RequestEncoding } from 'ol/source/WMTS'; import WMTSTileGrid from 'ol/tilegrid/WMTS'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source component for tile data from WMTS servers. * @name nol-wmts-source * @order 1 */ export declare class NolWMTSSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolAttributionsCollapsible?: boolean; nolCacheSize?: number; nolCrossOrigin?: string | null; nolInterpolate?: boolean; nolTileGrid: WMTSTileGrid; nolProjection?: ProjectionLike; nolReprojectionErrorThreshold?: number; nolRequestEncoding?: RequestEncoding; nolLayer: string; nolStyle: string; nolTileClass?: typeof ImageTile; nolTilePixelRatio?: number; nolFormat?: string; nolVersion?: string; nolMatrixSet: string; nolDimensions?: Record; nolUrl?: string; nolTileLoadFunction?: LoadFunction; nolUrls?: string[]; nolWrapX?: boolean; nolTransition?: number; nolZDirection?: number | NearestDirectionFunction; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; nolTileloadend: EventEmitter; nolTileloaderror: EventEmitter; nolTileloadstart: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): WMTS; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useWMTSSource(): NolWMTSSourceComponent; export declare function useWMTSSource(options: InjectOptions & { optional?: false; }): NolWMTSSourceComponent; export declare function useWMTSSource(options: InjectOptions): NolWMTSSourceComponent | null;