/// <reference types="google.maps" />

export type MapsLibrary = google.maps.MapsLibrary
export type CoreLibrary = google.maps.CoreLibrary
export type PlacesLibrary = google.maps.PlacesLibrary
export type GeocodingLibrary = google.maps.GeocodingLibrary
export type GeocoderAddressComponent = google.maps.GeocoderAddressComponent
export type AutocompletePrediction = google.maps.places.AutocompletePrediction

export interface IDecodedAddress {
  country?: string
  state?: string
  city?: string
  pinCode?: string
  subLocality?: string
  latitude?: number
  longitude?: number
  floorNo?: string
}
