interface GeoIpResult { query: string; status: string; country?: string; countryCode?: string; region?: string; regionName?: string; city?: string; zip?: string; lat?: number; lon?: number; timezone?: string; isp?: string; org?: string; as?: string; asname?: string; mobile?: boolean; proxy?: boolean; hosting?: boolean; } export declare function geoipLookup(ip: string): Promise; export declare function geoipBatch(ips: string[]): Promise; export {}; //# sourceMappingURL=index.d.ts.map