import { CountryEnum } from './CountryEnum';
import { Ipv4 } from '../../Ipv4';
import { Ipv6 } from '../../Ipv6';
/** Available clusterIp by country */
export interface CountriesIp {
    /** The whois country of the ip */
    country: CountryEnum;
    /** The cluster ip */
    ip?: Ipv4;
    /** The cluster ipv6 */
    ipv6?: Ipv6;
}
//# sourceMappingURL=CountriesIp.d.ts.map