/// import { OnDestroy, OnInit, OnChanges, SimpleChanges } from '@angular/core'; import { Extent } from 'openlayers'; import { MapComponent } from '../map.component'; export declare abstract class LayerComponent implements OnInit, OnChanges, OnDestroy { protected host: MapComponent; instance: any; componentType: string; opacity: number; visible: boolean; extent: Extent; zIndex: number; minResolution: number; maxResolution: number; constructor(host: MapComponent); ngOnInit(): void; ngOnDestroy(): void; ngOnChanges(changes: SimpleChanges): void; }