import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { NearestDirectionFunction } from 'ol/array'; import { TileSourceEvent } from 'ol/source/Tile'; import { AttributionLike } from 'ol/source/Source'; import { ProjectionLike } from 'ol/proj'; import BaseEvent from 'ol/events/Event'; import CartoDB, { Options } from 'ol/source/CartoDB'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source component for the CartoDB Maps API. * @name nol-cartodb-source * @order 1 */ export declare class NolCartoDBSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolCacheSize?: number; nolCrossOrigin?: string | null; nolProjection?: ProjectionLike; nolMaxZoom?: number; nolMinZoom?: number; nolWrapX?: boolean; nolConfig?: Record; nolMap?: string; nolAccount?: 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(): CartoDB; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useCartoDBSource(): NolCartoDBSourceComponent; export declare function useCartoDBSource(options: InjectOptions & { optional?: false; }): NolCartoDBSourceComponent; export declare function useCartoDBSource(options: InjectOptions): NolCartoDBSourceComponent | null;