import type { GeoCoordinates } from "../banking/common";
type IPAddressStringResult = {
    value: string;
};
type IPAddressAndLocation = {
    ip_address: string;
    country: string;
    city: string;
    latitude: number;
    longitude: number;
};
interface CachedGeoData {
    geo_coordinates: GeoCoordinates;
    ip_address?: string;
    timestamp: number;
}
export type { IPAddressStringResult, IPAddressAndLocation, CachedGeoData };
