type PlaceType = ('country' | 'region' | 'postcode' | 'district' | 'place' | 'locality' | 'neighborhood' | 'address' | 'poi')[]; export interface MapboxPlace { id: string; place_type: PlaceType; address?: string; text: string; place_name: string; center: [number, number]; geometry: { type: 'Point'; coordinates: [number, number]; interpolated?: boolean; omitted?: boolean; }; context?: { id: string; text: string; short_code?: string; }[]; } export declare const getMatchingPlaces: (mapboxAccessToken: string, locale: string, searchText: string, country?: string, proximityCountry?: string) => Promise; export declare const sanitizeSearchText: (searchText: string) => string; export {}; //# sourceMappingURL=mapbox.d.ts.map