import type { FieldsParam, GeocodingResult, Place, PlacePrediction, PredictionFiltersParam } from './types'; export declare function initialize(apiKey: string): void; export declare function fetchPredictions(query: string, filters?: PredictionFiltersParam): Promise; export declare function fetchPlaceByID(placeID: string, fields?: FieldsParam): Promise; export declare function startNewSession(): Promise; export declare function clearSession(): Promise; export declare function geocode(address: string): Promise; export declare function reverseGeocode(lat: number, lng: number): Promise; //# sourceMappingURL=googlePlacesSdk.d.ts.map