import { AfterViewInit, OnDestroy } from '@angular/core'; import { Layer } from '../../layer/shared'; import { LayerService } from '../../layer/shared/layer.service'; import { IgoMap, MapFactoryService } from '../shared'; export declare class MiniBaseMapComponent implements AfterViewInit, OnDestroy { private layerService; private mapFactoryService; map: IgoMap; private _map; baseLayer: Layer; private _baseLayer; disabled: boolean; private _disabled; display: boolean; private _display; basemap: IgoMap; constructor(layerService: LayerService, mapFactoryService: MapFactoryService); ngAfterViewInit(): void; ngOnDestroy(): void; changeBaseLayer(baseLayer: Layer): void; private handleMoveEnd(); private handleBaseLayerChanged(baselayer); }