import { OnInit } from '@angular/core'; import { google } from '@google/maps'; declare var google: any; export declare class AngularGoogleMapComponent implements OnInit { gmapElement: any; map: google.maps.Map; mapProp: any; TILE_SIZE: number; width: '100%'; height: '400px'; padding: '0'; margin: '0'; mapSettings: { zoomValue: number; isGeolocation: boolean; customStyles: any[]; latitude: number; longitude: number; enableGestureHandling: string; disableDefaultUI: boolean; isSatelliteView: boolean; isZoomControl: boolean; isStreetViewControl: boolean; showPixelAndCoordinates: boolean; address: { filed1: string; filed2: string; filed3: string; filed4: string; filed5: string; }; isDarkTheme: boolean; enableMarker: { isEnable: boolean; isDragable: boolean; animation: boolean; clickToggle: boolean; lat: number; lng: number; }[]; }; constructor(); ngOnInit(): void; isDarkMode(): void; showPixelAndCoordinates(): void; createInfoWindowContent(latLng: any, zoom: any): string; project(latLng: any): any; geolocation(): void; handleLocationError(browserHasGeolocation: any, map: any, infoWindow: any, pos: any): void; createMarker(): void; } export {};