import { Command, flags } from '@oclif/command'; export default class Test extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; coverage: import("@oclif/parser/lib/flags").IBooleanFlag; debug: import("@oclif/parser/lib/flags").IBooleanFlag; watch: import("@oclif/parser/lib/flags").IBooleanFlag; runInBand: import("@oclif/parser/lib/flags").IBooleanFlag; passthrough: flags.IOptionFlag; }; run(): Promise; }