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 { NearestDirectionFunction } from 'ol/array'; import { AttributionLike } from 'ol/source/Source'; import BaseEvent from 'ol/events/Event'; import StadiaMaps, { Options } from 'ol/source/StadiaMaps'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source component for the Stadia Maps tile server. * @name nol-stadia-maps-source * @order 1 */ export declare class NolStadiaMapsSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolCacheSize?: number; nolInterpolate?: boolean; nolLayer: string; nolMinZoom?: number; nolMaxZoom?: number; nolReprojectionErrorThreshold?: number; nolTileLoadFunction?: LoadFunction; nolTransition?: number; nolUrl?: string; nolWrapX?: boolean; nolZDirection?: number | NearestDirectionFunction; nolApiKey?: string; nolRetina?: boolean; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; nolTileloadend: EventEmitter; nolTileloaderror: EventEmitter; nolTileloadstart: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): StadiaMaps; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useStadiaMapsSource(): NolStadiaMapsSourceComponent; export declare function useStadiaMapsSource(options: InjectOptions & { optional?: false; }): NolStadiaMapsSourceComponent; export declare function useStadiaMapsSource(options: InjectOptions): NolStadiaMapsSourceComponent | null;