import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { Versions } from 'ol/format/IIIFInfo'; import { TileSourceEvent } from 'ol/source/Tile'; import { AttributionLike, State } from 'ol/source/Source'; import { Extent } from 'ol/extent'; import { ProjectionLike } from 'ol/proj'; import { Size } from 'ol/size'; import BaseEvent from 'ol/events/Event'; import IIIF, { Options } from 'ol/source/IIIF'; import { NearestDirectionFunction } from 'ol/array'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Layer source component for IIIF Image API services. * @name nol-iiif-source * @order 1 */ export declare class NolIIIFSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAttributions?: AttributionLike; nolAttributionsCollapsible?: boolean; nolCacheSize?: number; nolCrossOrigin?: string | null; nolExtent?: Extent; nolFormat?: string; nolInterpolate?: boolean; nolProjection?: ProjectionLike; nolQuality?: string; nolReprojectionErrorThreshold?: number; nolResolutions?: number[]; nolSize: Size; nolSizes?: Size[]; nolState?: State; nolSupports?: string[]; nolTilePixelRatio?: number; nolTileSize?: number | Size; nolTransition?: number; nolUrl?: string; nolVersion?: Versions; 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(): IIIF; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useIIIFSource(): NolIIIFSourceComponent; export declare function useIIIFSource(options: InjectOptions & { optional?: false; }): NolIIIFSourceComponent; export declare function useIIIFSource(options: InjectOptions): NolIIIFSourceComponent | null;