import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { Extent } from 'ol/extent'; import { Feature } from 'ol'; import { Geometry } from 'ol/geom'; import { ProjectionLike } from 'ol/proj'; import { AttributionLike, State } from 'ol/source/Source'; import { TileSourceEvent } from 'ol/source/Tile'; import { Size } from 'ol/size'; import { LoadFunction, UrlFunction } from 'ol/Tile'; import { NearestDirectionFunction } from 'ol/array'; import BaseEvent from 'ol/events/Event'; import FeatureFormat from 'ol/format/Feature'; import Tile from 'ol/VectorTile'; import TileGrid from 'ol/tilegrid/TileGrid'; import VectorTile, { Options } from 'ol/source/VectorTile'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Component for layer sources providing vector data divided into a tile grid, to be * used with [VectorTileLayer](components/vector-tile-layer) component. * @name nol-vector-tile-source * @order 1 */ export declare class NolVectorTileSourceComponent implements NolPrefixedOptions>>, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolAttributionsCollapsible?: boolean; nolCacheSize?: number; nolExtent?: Extent; nolFormat?: FeatureFormat; nolOverlaps?: boolean; nolProjection?: ProjectionLike; nolState?: State; nolTileClass?: typeof Tile; nolMaxZoom?: number; nolMinZoom?: number; nolTileSize?: number | Size; nolMaxResolution?: number; nolTileGrid?: TileGrid; nolTileLoadFunction?: LoadFunction; nolTileUrlFunction?: UrlFunction; nolUrl?: string; nolTransition?: number; nolUrls?: string[]; nolWrapX?: boolean; 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(): VectorTile>; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useVectorTileSource(): NolVectorTileSourceComponent; export declare function useVectorTileSource(options: InjectOptions & { optional?: false; }): NolVectorTileSourceComponent; export declare function useVectorTileSource(options: InjectOptions): NolVectorTileSourceComponent | null;