/** * Sets up mocks for Google Maps API and @vis.gl/react-google-maps components in testing environments. * * This function mocks both the Google Maps JavaScript API and React components from @vis.gl/react-google-maps. * It provides mock implementations of Maps, Markers, InfoWindows, Geocoder, geometry functions, and places services, * allowing tests of map-dependent components to run without requiring the actual Google Maps API. * * Key features: * - Mocks core Map, Marker, and InfoWindow components with simple test-friendly implementations * - Provides placeholders for Google Maps geometry calculations * - Stubs out Places API services * - Makes map-related hooks always return loaded state * * @example * // In your jest setup file * import { setupGoogleMaps } from '@trackunit/react-test-setup'; * * setupGoogleMaps(); */ export declare const setupGoogleMaps: () => void;