/// import { GetPlaceResponse, SearchTextResultItem } from "@aws-sdk/client-geo-places"; import { AddressComponent, PlusCode } from "./defines"; interface PlaceResult { address_components?: google.maps.GeocoderAddressComponent[]; adr_address?: string; formatted_address?: string; formatted_phone_number?: string; geometry?: google.maps.places.PlaceGeometry; html_attributions?: string[]; icon?: string; icon_background_color?: string; icon_mask_base_uri?: string; international_phone_number?: string; name?: string; opening_hours?: google.maps.places.PlaceOpeningHours; place_id?: string; plus_code?: google.maps.places.PlacePlusCode; price_level?: number; reference?: string; types?: string[]; url?: string; utc_offset?: number; utc_offset_minutes?: number; vicinity?: string; website?: string; } declare const convertGeocoderAddressComponentToAddressComponent: (addressComponents: google.maps.GeocoderAddressComponent[] | null) => AddressComponent[]; declare const convertPlacePlusCodeToPlusCode: (plusCode: google.maps.places.PlacePlusCode | null) => PlusCode | null; declare const convertAmazonCategoriesToGoogle: (place: GetPlaceResponse | SearchTextResultItem) => any[]; declare const convertAmazonPlaceToGoogle: (place: GetPlaceResponse | SearchTextResultItem, fields: any, includeDetailFields: any) => PlaceResult; declare const convertNewFieldsToPlaceResultFields: (fields: string[] | null) => string[]; export { convertAmazonCategoriesToGoogle, convertAmazonPlaceToGoogle, convertGeocoderAddressComponentToAddressComponent, convertPlacePlusCodeToPlusCode, convertNewFieldsToPlaceResultFields, PlaceResult, };