import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; export interface IpLocationData { countrycode: string; countryname: string; detail: string; ip: string; registry: string; spam: boolean; tor: boolean; } export declare class IpLocationService { private http; constructor(http: HttpClient); getLocation(): Observable; }