import { flags } from '@oclif/command'; import Command from '../base'; /** * The base class of events commands */ export default class Events extends Command { /** * The command description * @var string */ static description: string; /** * The command usage * @var string */ static usage: string; /** * The command flags * @var Object */ static flags: { tail: import("@oclif/parser/lib/flags").IBooleanFlag; dump: import("@oclif/parser/lib/flags").IBooleanFlag; filters: flags.IOptionFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; run(): Promise; }