import FasterHttpClient from "../network/FasterHttpClient"; import GeoLocation from "../model/GeoLocation"; declare class GeoService { private fasterClient; constructor(fasterClient: FasterHttpClient); getLocation(): Promise; } export default GeoService;