/** DNS zone status */
export interface Status {
    /** Error list if any */
    errors?: string[];
    /** Whether the zone is deployed or not */
    isDeployed: boolean;
    /** Warning list if any */
    warnings?: string[];
}
//# sourceMappingURL=Status.d.ts.map