import { flags } from '@oclif/command'; import Logs from '../logs'; /** * LogsRetrieve class extending the superClass Logs. */ export default class LogsRetrieve extends Logs { /** * @param string * Description of the command logs:retrieve. */ 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: { id: 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 retrieve use for help. */ static examples: string[]; run(): Promise; }