import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; 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 TileArcGISRest, { Options } from 'ol/source/TileArcGISRest'; import TileGrid from 'ol/tilegrid/TileGrid'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source for tile data from ArcGIS Rest services. * @name nol-tile-arcgis-reset-source * @order 1 */ export declare class NolTileArcGISRestSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolCacheSize?: number; nolCrossOrigin?: string | null; nolInterpolate?: boolean; nolParams?: Record; nolHidpi?: boolean; nolTileGrid?: TileGrid; nolProjection?: ProjectionLike; nolReprojectionErrorThreshold?: number; nolTileLoadFunction?: LoadFunction; nolUrl?: string; nolWrapX?: boolean; nolTransition?: number; nolUrls?: string[]; 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(): TileArcGISRest; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useTileArcGISRestSource(): NolTileArcGISRestSourceComponent; export declare function useTileArcGISRestSource(options: InjectOptions & { optional?: false; }): NolTileArcGISRestSourceComponent; export declare function useTileArcGISRestSource(options: InjectOptions): NolTileArcGISRestSourceComponent | null;