interface GeolocationState { loading: boolean; accuracy: number | null; altitude: number | null; altitudeAccuracy: number | null; heading: number | null; latitude: number | null; longitude: number | null; speed: number | null; timestamp: number | null; error: string | null; } export declare const useGeolocation: (options?: PositionOptions) => GeolocationState; export {};