import GeoService from './service/GeoService'; import GeoLocation from './model/GeoLocation'; declare class FasterGeo { private geoService; constructor(geoService: GeoService); getLocation(): Promise; } export default FasterGeo;