import BaseCommand from '../base-command'; import { flags } from '@oclif/command'; export default class Logs extends BaseCommand { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; debug: import("@oclif/parser/lib/flags").IBooleanFlag; lines: flags.IOptionFlag; all: import("@oclif/parser/lib/flags").IBooleanFlag; format: flags.IOptionFlag; type: flags.IOptionFlag; }; run(): Promise; }