import { Command, flags } from '@oclif/command'; export default class List extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; all: import("@oclif/parser/lib/flags").IBooleanFlag; done: import("@oclif/parser/lib/flags").IBooleanFlag; priority: flags.IOptionFlag; project: flags.IOptionFlag; context: flags.IOptionFlag; "without-projects": import("@oclif/parser/lib/flags").IBooleanFlag; "without-contexts": import("@oclif/parser/lib/flags").IBooleanFlag; "and-projects": import("@oclif/parser/lib/flags").IBooleanFlag; "and-contexts": import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; }