type GeolocationState = {
    latitude: number | null;
    longitude: number | null;
    accuracy: number | null;
    error: GeolocationPositionError | null;
    timestamp: number | null;
};
export declare function useGeolocation(options?: PositionOptions): GeolocationState;
export {};
