import { AuthCommand } from '../authCommand'; export default class EnvUpdate extends AuthCommand { static hidden: boolean; static idempotent: boolean; static description: string; static flags: { locked: import("@oclif/core/interfaces").BooleanFlag; secret: import("@oclif/core/interfaces").BooleanFlag; }; static args: { key: import("@oclif/core/interfaces").Arg>; value: import("@oclif/core/interfaces").Arg>; }; run(): Promise; }