import { flags } from '@oclif/command'; import Command from '../base'; /** * Payouts command class */ export default class Payouts extends Command { /** * The command descrition * @var string */ static description: string; /** * @param string * payouts usage string for help */ static usage: string; /** * The command flags * @var Object */ static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; run(): Promise; }