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