import { flags } from '@oclif/command'; import Payouts from '../payouts'; /** * PayoutsDelete Class */ export default class PayoutsDelete extends Payouts { /** * @param string * Description of payouts:delete command */ static description: string; /** * @param Object * delete 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; /** * @param Object * delete command flags */ environment: flags.IOptionFlag; }; /** * @param string * Set the command usage for help */ static usage: string; /** * @param string[] * examples for the delete commands */ static examples: string[]; run(): Promise; }