import { JSX } from '../../stencil-public-runtime'; export declare class AirMap { /** Specifies canter of the map */ center: google.maps.LatLng | google.maps.LatLngLiteral; watchCenterChange(newCenter: google.maps.LatLng | google.maps.LatLngLiteral): void; /** Specifies map options */ options?: google.maps.MapOptions; /** Specifies map zoom */ zoom: number; private map; private mapElement?; private marker; private googleMapsApiLoader?; componentDidLoad(): Promise; private initMap; private setCenter; render(): JSX.Element; }