import { EnvRuntime } from './env-runtime';
import { EnvService } from '../services';
export declare class Runtime {
    readonly runtimeEnvs: EnvRuntime[];
    constructor(runtimeEnvs: EnvRuntime[]);
    run(service: EnvService): Promise<{
        env: string;
        res: any;
    }[]>;
}
