export interface Location {
    city?: string;
    region?: string;
    country?: string;
    ll?: [number, number];
}
export declare function getLocationFromIP(ip?: string): Location | null;
//# sourceMappingURL=geoipUtil.d.ts.map