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 { ServerType } from 'ol/source/wms'; import BaseEvent from 'ol/events/Event'; import TileWMS, { Options } from 'ol/source/TileWMS'; import TileGrid from 'ol/tilegrid/TileGrid'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source component for tile data from WMS servers. * @name nol-tile-wms-source * @order 1 */ export declare class NolTileWMSSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolAttributionsCollapsible?: boolean; nolCacheSize?: number; nolCrossOrigin?: string | null; nolInterpolate?: boolean; nolParams: Record; nolGutter?: number; nolHidpi?: boolean; nolProjection?: ProjectionLike; nolReprojectionErrorThreshold?: number; nolTileClass?: typeof ImageTile; nolTileGrid?: TileGrid; nolServerType?: ServerType; nolTileLoadFunction?: LoadFunction; nolUrl?: string; nolUrls?: string[]; 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(): TileWMS; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useTileWMSSource(): NolTileWMSSourceComponent; export declare function useTileWMSSource(options: InjectOptions & { optional?: false; }): NolTileWMSSourceComponent; export declare function useTileWMSSource(options: InjectOptions): NolTileWMSSourceComponent | null;