import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
import Projection from 'ol/proj/Projection';
import { MapService } from '../../services/map.service';
export declare class MapViewerComponent implements OnInit, OnChanges {
    private mapService;
    mapId: string;
    center: [number, number];
    projection: Projection | string;
    zoom: number;
    private map;
    constructor(mapService: MapService);
    ngAfterViewInit(): void;
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    getMapId(): string;
}
