import { NgZone } from '@angular/core';
import { Observable } from 'rxjs';
export declare enum PositionError {
    PERMISSION_DENIED = 0,
    POSITION_UNAVAILABLE = 1,
    TIMEOUT = 2
}
export declare class GeolocationService {
    private zone;
    constructor(zone: NgZone);
    getCurrentPosition(): Observable<any>;
    watchPosition(options?: Object): Observable<any>;
}
