import { APICommand } from '../index.js'; import type { JsonObj } from '../result.js'; export default class Delete extends APICommand { static args: { name: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static description: string; static examples: string[]; static flags: { yes: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; run(): Promise; }