import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { Coordinate } from 'ol/coordinate'; import { Extent } from 'ol/extent'; import { ProjectionLike } from 'ol/proj'; import View, { ViewOptions } from 'ol/View'; import BaseEvent from 'ol/events/Event'; import { NolPrefixedOptions } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * A `nol-view` component represents a simple 2D view of the map. * @name nol-view * @order 1 */ export declare class NolViewComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolCenter?: Coordinate; nolConstrainRotation?: number | boolean; nolEnableRotation?: boolean; nolExtent?: Extent; nolConstrainOnlyCenter?: boolean; nolSmoothExtentConstraint?: boolean; nolMaxResolution?: number; nolMinResolution?: number; nolMaxZoom?: number; nolMinZoom?: number; nolMultiWorld?: boolean; nolConstrainResolution?: boolean; nolSmoothResolutionConstraint?: boolean; nolShowFullExtent?: boolean; nolProjection?: ProjectionLike; nolResolution?: number; nolResolutions?: number[]; nolRotation?: number; nolZoom?: number; nolZoomFactor?: number; nolPadding?: number[]; nolChange: EventEmitter; nolCenterChange: EventEmitter; nolResolutionChange: EventEmitter; nolRotationChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly cdr; private readonly destroyRef; private readonly host; private instance; getInstance(): View; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function injectView(): NolViewComponent; export declare function injectView(options: InjectOptions & { optional?: false; }): NolViewComponent; export declare function injectView(options: InjectOptions): NolViewComponent | null;