import { Ipv6 } from '../Ipv6';
import { Ipv4 } from '../Ipv4';
/** A structure describing the eligibility status of a domain */
export interface EligibilityStatus {
    /** Customer domain name */
    domain: string;
    /** Eligible IP(s) v6 for this domain */
    ip6s: Ipv6[];
    /** Eligible IP(s) for this domain */
    ips: Ipv4[];
    /** Whether this domain is hosted by Ovh or not */
    isHostedByOvh: boolean;
}
//# sourceMappingURL=EligibilityStatus.d.ts.map