/** DNS zone */
export interface Zone {
    /** Is DNSSEC supported by this zone */
    dnssecSupported: boolean;
    /** Whether the DNS zone has a DNS Anycast subscription */
    hasDnsAnycast: boolean;
    /** Last update date of the DNS zone */
    lastUpdate?: string;
    /** Zone name */
    name: string;
    /** Name servers that host the DNS zone */
    nameServers: string[];
}
//# sourceMappingURL=Zone.d.ts.map