import * as solid_js from 'solid-js'; import { ConfigurableNavigator } from '../_configurable.js'; interface UseGeolocationOptions extends Partial, ConfigurableNavigator { immediate?: boolean; } /** * Reactive Geolocation API. * * @see https://solidjs-use.github.io/solidjs-use/core/useGeolocation */ declare function useGeolocation(options?: UseGeolocationOptions): { isSupported: solid_js.Accessor; coords: solid_js.Accessor; locatedAt: solid_js.Accessor; error: solid_js.Accessor; resume: () => void; pause: () => void; }; type UseGeolocationReturn = ReturnType; export { UseGeolocationOptions, UseGeolocationReturn, useGeolocation };