import { flags } from '@oclif/command'; import logs from '../logs'; /** * LogsList command class. */ export default class LogsList extends logs { /** * @param string * Description of logs:list command. */ static description: string; /** * @param string * Custom usage string for help * This overrides the default usage */ static usage: string; /** * @param object * Declaration of the command flags. */ static flags: { limit: import("@oclif/parser/lib/flags").IOptionFlag; filter: flags.IOptionFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; tail: import("@oclif/parser/lib/flags").IBooleanFlag; dump: import("@oclif/parser/lib/flags").IBooleanFlag; filters: flags.IOptionFlag; 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; /** * @param string[] * Some examples of the logs:list use for help. */ static examples: string[]; run(): Promise; }