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 BaseEvent from 'ol/events/Event'; import BingMaps, { Options } from 'ol/source/BingMaps'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source component for Bing Maps tile data. * @name nol-bing-maps-source * @order 1 */ export declare class NolBingMapsSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolCacheSize?: number; nolHidpi?: boolean; nolCulture?: string; nolKey: string; nolImagerySet: string; nolInterpolate?: boolean; nolMaxZoom?: number; nolReprojectionErrorThreshold?: number; nolTileLoadFunction?: LoadFunction; nolWrapX?: boolean; nolTransition?: number; nolZDirection?: number | NearestDirectionFunction; nolPlaceholderTiles?: boolean; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; nolTileloadend: EventEmitter; nolTileloaderror: EventEmitter; nolTileloadstart: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): BingMaps; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useBingMapsSource(): NolBingMapsSourceComponent; export declare function useBingMapsSource(options: InjectOptions & { optional?: false; }): NolBingMapsSourceComponent; export declare function useBingMapsSource(options: InjectOptions): NolBingMapsSourceComponent | null;