/// import { Traffic, TravelMode } from "@aws-sdk/client-geo-maps"; import { Map } from "maplibre-gl"; import { AddListenerResponse, MapTypeId, MigrationLatLng, MigrationLatLngBounds } from "../common"; declare class MigrationMap { #private; _apiKey: string; _region: string; constructor(containerElement: any, options: google.maps.MapOptions); addListener(eventName: any, handler: any, listenerType?: string): AddListenerResponse; getBounds(): MigrationLatLngBounds; getCenter(): MigrationLatLng; getDiv(): HTMLElement; getHeading(): number; getMapTypeId(): MapTypeId; getTilt(): number; getZoom(): number; moveCamera(cameraOptions: any): void; panBy(x: any, y: any): void; panTo(latLng: any): void; setCenter(center: any): void; setHeading(heading: any): void; setMapTypeId(mapTypeId: any): void; setOptions(options: any): void; setTilt(tilt: any): void; setZoom(zoom: any): void; fitBounds(bounds: any, padding?: any): void; _getMap(): Map; _setMap(map: any): void; _setTraffic(traffic: Traffic | null): void; _setTravelMode(travelMode: TravelMode | null): void; } export { MigrationMap };