import EasCommand from '../../commandUtils/EasCommand'; export default class EnvExec extends EasCommand { static description: string; static contextDefinition: { loggedIn: import("../../commandUtils/context/LoggedInContextField").default; projectId: import("../../commandUtils/context/ProjectIdContextField").ProjectIdContextField; }; static flags: { 'non-interactive': import("@oclif/core/lib/interfaces").BooleanFlag; }; static args: { name: string; required: boolean; description: string; }[]; runAsync(): Promise; private sanitizeFlagsAndArgs; private runCommandWithEnvVarsAsync; private loadEnvironmentVariablesAsync; }