import type { ServiceExecutionResult } from '../services'; import type { EnvResult } from './runtime'; export declare class EnvsExecutionResult { readonly results: EnvResult[]; constructor(results: EnvResult[]); hasErrors(): boolean; /** * execution errors. */ get errors(): Error[]; getErrorsOfEnv(envResult: EnvResult): Error[]; /** * if only one error is found, throw it. otherwise, summarize the errors per env and throw the * output */ throwErrorsIfExist(): void; getEnvErrorsAsString(envResult: EnvResult): string; }