import type { RegistryScriptInput } from '#nuxt-scripts/types'; import { GoogleMapsOptions } from './schemas.js'; export { GoogleMapsOptions }; export type GoogleMapsInput = RegistryScriptInput; type MapsNamespace = typeof window.google.maps; export interface GoogleMapsApi { maps: Promise; } declare global { interface Window { google: { maps: { __ib__: () => void; }; }; } } export declare function useScriptGoogleMaps(_options?: GoogleMapsInput): import("#nuxt-scripts/types").UseScriptContext;