interface LocationOptions { enableHighAccuracy?: boolean; timeout?: number; maximumAge?: number; } interface LocationState { coords: { latitude: number | null; longitude: number | null; accuracy: number | null; altitude: number | null; altitudeAccuracy: number | null; heading: number | null; speed: number | null; }; locatedAt: number | null; error: string | null; } declare const useLocation: (options?: LocationOptions) => LocationState; export { useLocation, type LocationState, type LocationOptions }; //# sourceMappingURL=use-location.d.ts.map