import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { LoadFunction, UrlFunction } from 'ol/Tile'; import { NearestDirectionFunction } from 'ol/array'; import { ProjectionLike } from 'ol/proj'; import { Size } from 'ol/size'; import { AttributionLike } from 'ol/source/Source'; import { TileSourceEvent } from 'ol/source/Tile'; import BaseEvent from 'ol/events/Event'; import TileGrid from 'ol/tilegrid/TileGrid'; import XYZ, { Options } from 'ol/source/XYZ'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source for tile data with URLs in a set XYZ format that are defined in a URL template. * @name nol-xyz-source * @order 1 */ export declare class NolXYZSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolAttributionsCollapsible?: boolean; nolCacheSize?: number; nolCrossOrigin?: string | null; nolInterpolate?: boolean; nolOpaque?: boolean; nolProjection?: ProjectionLike; nolReprojectionErrorThreshold?: number; nolMaxZoom?: number; nolMinZoom?: number; nolMaxResolution?: number; nolTileGrid?: TileGrid; nolTileLoadFunction?: LoadFunction; nolTilePixelRatio?: number; nolTileSize?: number | Size; nolGutter?: number; nolTileUrlFunction?: UrlFunction; nolUrl?: string; 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 cdr; private readonly destroyRef; private readonly host; private instance; getInstance(): XYZ; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function injectXYZSource(): NolXYZSourceComponent; export declare function injectXYZSource(options: InjectOptions & { optional?: false; }): NolXYZSourceComponent; export declare function injectXYZSource(options: InjectOptions): NolXYZSourceComponent | null;