import { createGeolocation } from './core.mjs'; export { UseGeolocationCoords, UseGeolocationOptions, UseGeolocationReturn } from './core.mjs'; import '@usels/core'; /** * Reactive wrapper around the * [Geolocation API](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation). * * Tracks the user's geographic position via `watchPosition`, exposing * coordinates, last update timestamp, and error state as observables, with * `pause()` / `resume()` controls. */ type UseGeolocation = typeof createGeolocation; declare const useGeolocation: UseGeolocation; export { type UseGeolocation, createGeolocation, useGeolocation };