/// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// export interface GoogleMapStore { _googleMap: typeof google; } export declare function useGoogleMapStore(): { _googleMap: typeof google; readonly googleMap: typeof google; readonly isGoogleMapReady: boolean; initGoogleMap(apiKey: string): Promise; getGeocoder(): google.maps.Geocoder; getFirstMatchingAddress(lat: number, lng: number): Promise; getFirstMatchingCoordinate(address: string): Promise<[number, number]>; };