export interface Region { id: string; city: string; country: string; countryCode: string; timezone?: string; } export interface GeoIpResponse { city: string; country: string; countryCode: string; region?: string; timezone?: string; lat?: number; lon?: number; }