import type { AutocompleteOptions } from './types'; /** * Initialize the Google Places SDK with your API Key. * @param key Your Google Places API Key * @param onSuccess Callback for successful initialization * @param onError Callback for initialization error */ export declare function initialize(key: string, onSuccess?: (r: string) => void, onError?: (e: string) => void): void; /** * Open the Google Places Autocomplete Modal. * @param options Configuration options for the autocomplete modal (e.g., country filter) */ export declare function openAutocompleteModal(options?: AutocompleteOptions): Promise; //# sourceMappingURL=index.d.ts.map