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