import { ApiUrl } from '../../shared'; export interface UserLocation { ip: string; location: string; } export declare class Location { private readonly client; private constructor(); static client(apiUrl: ApiUrl): Location; getUserLocation(): Promise; }