import { flags } from '@oclif/command'; import Command from '../base'; /** * Logs class extending Command Class */ export default class Logs extends Command { /** * @param string * Description of the command Logs. */ static description: string; /** * @param string * Custom usage string for help * This overrides the default usage */ static usage: string; /** * @param string[] * Examples to add to help. * Each can be multiline. */ static examples: string[]; /** * @param object * Declaration of the command flags. */ 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; }