import { flags } from '@oclif/command'; import Command from '../../base'; /** * EventsStubEvent class extending super class Events */ export default class EventsStub extends Command { /** * @params String * Description of the command events:stub */ static description: string; /** * The command usage * @var string */ static usage: string; /** * @param object * Declaration of the command flags */ static flags: { event: flags.IOptionFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; /** * @param String[] * Some example with the token command */ static examples: string[]; run(): Promise; }