/** * Google Maps Service * * Service for Google Maps integration. * * Note: This is a Vite React app, so client-side Maps usage requires * VITE_GOOGLE_MAPS_API_KEY to be set in environment variables. */ /** * Get Google Maps API key for client-side usage * * In Vite, environment variables prefixed with VITE_ are exposed to the client. * Use this function to get the Maps API key in React components. */ export declare function getGoogleMapsApiKey(): string | undefined; /** * Check if Google Maps is configured */ export declare function isGoogleMapsConfigured(): boolean; /** * Load Google Maps JavaScript API * * This function dynamically loads the Google Maps JavaScript API. * Call this before using any Maps features. * * @param callback - Function to call when Maps API is loaded * @param libraries - Optional array of Maps libraries to load (e.g., ['places', 'geometry']) */ export declare function loadGoogleMapsApi(callback: () => void, libraries?: string[]): void; //# sourceMappingURL=google-maps.service.d.ts.map