import HelpCommand from "@oclif/plugin-help/lib/commands/help"; import type { flags } from "@oclif/command"; export default class Help extends HelpCommand { static description: string; static args: { name: string; required: boolean; description: string; }[]; static flags: flags.Input; static run(): Promise; }