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