import * as models from './models/index.js'; export interface WebServiceClientOptions { fetcher?: typeof fetch; host?: string; timeout?: number; } export default class WebServiceClient { private accountID; private licenseKey; private timeout; private host; private fetcher; constructor(accountID: string, licenseKey: string, options?: WebServiceClientOptions | number); city(ipAddress: string): Promise; country(ipAddress: string): Promise; insights(ipAddress: string): Promise; private responseFor; private handleError; }