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