import { Geolocation, GeolocationOptions, Geoposition } from '@ionic-native/geolocation'; import { Observable } from 'rxjs/Observable'; export declare class GeolocationProvider { private geolocation; private watch; private coordinates; constructor(geolocation: Geolocation); start(options?: GeolocationOptions): void; watchPosition(options?: GeolocationOptions): Observable; stop(): void; getCurrentPosition(options?: GeolocationOptions): Promise; getCurrentCoordinates(): Coordinates; }