export interface IpGeolocation { countryCode: string; country?: string; region?: string; city?: string; } /** Resolve the calling machine's own public-IP country. Never throws — a * lookup failure just loses the "best guess" convenience, falling back to * {@link FALLBACK_COUNTRY_CODE} rather than blocking applying a proxy. */ export declare function suggestCountryFromIp(fetchImpl?: typeof fetch): Promise;