import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { TileSourceEvent } from 'ol/source/Tile'; import { ProjectionLike } from 'ol/proj'; import { AttributionLike } from 'ol/source/Source'; import BaseEvent from 'ol/events/Event'; import GeoTIFFSource, { GeoTIFFSourceOptions, Options, SourceInfo } from 'ol/source/GeoTIFF'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * A source component for working with GeoTIFF data. * @name nol-geotiff-source * @order 1 */ export declare class NolGeoTIFFSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolSources: Array; nolSourceOptions?: GeoTIFFSourceOptions; nolConvertToRGB?: boolean | 'auto'; nolNormalize?: boolean; nolOpaque?: boolean; nolProjection?: ProjectionLike; nolTransition?: number; nolWrapX?: boolean; nolInterpolate?: boolean; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; nolTileloadend: EventEmitter; nolTileloaderror: EventEmitter; nolTileloadstart: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): GeoTIFFSource; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useGeoTIFFSource(): NolGeoTIFFSourceComponent; export declare function useGeoTIFFSource(options: InjectOptions & { optional?: false; }): NolGeoTIFFSourceComponent; export declare function useGeoTIFFSource(options: InjectOptions): NolGeoTIFFSourceComponent | null;