import type { GeoProfile } from '../types'; /** Build a full {@link GeoProfile} from a country code (offline). */ export declare function geoFromCountry(countryCode: string, ip?: string): GeoProfile; /** * Resolve a public IP to a coherent geo identity via ip-api.com (free, no key, * HTTP). Best-effort: on any failure/timeout it returns `null` and the caller * falls back to defaults. Never throws, never hangs (3s timeout). */ export declare function resolveGeoFromIp(ip: string): Promise; //# sourceMappingURL=geo.d.ts.map