import { flags } from '@oclif/command'; import Transactions from '../transactions'; /** * TransactionDelete class extending super class Transactions */ export default class TransactionsDelete extends Transactions { /** * @params String * Description of the command transactions:delete */ static description: string; /** * The command usage * @var string */ static usage: string; /** * @param object * Declaration of the command flags */ static flags: { id: import("@oclif/parser/lib/flags").IOptionFlag; confirm: import("@oclif/parser/lib/flags").IBooleanFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; /** * @param String[] * Some example of use of the delete command */ static examples: string[]; run(): Promise; }