/// export declare function geocodeAddress(address: string): Promise<{ results: google.maps.GeocoderResult[]; latLng: google.maps.LatLngLiteral; }>; export declare const mapAddressComponents: (addressComponents: google.maps.GeocoderAddressComponent[]) => Record; export declare const parseAddress: (addressComponents: google.maps.GeocoderAddressComponent[]) => { address?: string | undefined; countryCode?: string | undefined; country?: string | undefined; state?: string | undefined; city?: string | undefined; postcode?: string | undefined; }; export declare const getAddressFromPlaceId: (placeId: string) => Promise<{ addressComponents: { address?: string | undefined; countryCode?: string | undefined; country?: string | undefined; state?: string | undefined; city?: string | undefined; postcode?: string | undefined; }; latLng: google.maps.LatLngLiteral; }>;