/// import PlaceResult = google.maps.places.PlaceResult; import PredictionTerm = google.maps.places.PredictionTerm; import { WaypointTypeEnum } from '../consts/waypoint.consts'; export interface WaypointSuggestion { suggestion_id?: string; additional_info?: string; location?: GeoPoint; place_id: string; frequency?: number; last_visit?: string | Date; geo_key?: string; prediction_term?: PredictionTerm[]; } export interface GeoPoint { lat: number; lng: number; } export interface GooglePlaceResult { place: PlaceResult; text: string; } export interface WaypointQueryChange { waypoint_type: WaypointTypeEnum; place_name: string; } export declare const WAYPOINT_SUGGESTIONS: WaypointSuggestion[]; export declare const WAYPOINT_SUGGESTIONS2: WaypointSuggestion[];