/** * Google Places Photos * * Fetches photo URLs from Google Places API for venues with placeId. * Requires API key. * * Note: We cache the photo URL result (not the image data itself). * Google ToS prohibits caching the actual image content. * * API: https://developers.google.com/maps/documentation/places/web-service/photos */ import type { ResponseCache } from '../caching/types'; import type { ImageResult } from './types'; /** * Fetch Google Places photo URL for a venue. * * Caches the URL result (not the image data) to avoid repeated API calls. */ export declare function fetchGooglePlacesPhoto(placeId: string, apiKey: string, cache: ResponseCache): Promise; //# sourceMappingURL=google-places.d.ts.map