import { Command } from "@oclif/core"; import CustomHelp from "../help.js"; export default class HelpCommand extends Command { static description: string; static args: { commands: import("@oclif/core/interfaces").Arg>; }; static strict: boolean; static flags: { "web-cli-help": import("@oclif/core/interfaces").BooleanFlag; }; static examples: string[]; run(): Promise; getCustomHelp(): CustomHelp; }