import { flags } from '@oclif/command'; import Payouts from '../payouts'; /** * PayoutsUpdate class */ export default class PayoutsUpdate extends Payouts { /** * @param string * Description of the command Custommers:update description */ static description: string; /** * @param object * Declaration of the command flags */ static flags: { id: import("@oclif/parser/lib/flags").IOptionFlag; data: flags.IOptionFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; /** * @param string * Set the command usage for help */ static usage: string; /** * @param string[] * examples command for the help */ static examples: string[]; run(): Promise; }