/** Zone status */
export interface Status {
    /** Error list */
    errors?: string[];
    /** True if the zone has successfully been deployed */
    isDeployed: boolean;
    /** Warning list */
    warnings?: string[];
}
//# sourceMappingURL=Status.d.ts.map