import { RunState } from '../core'; import { BaseContext, CliContext } from './Cli'; import { Command } from './Command'; export declare class HelpCommand extends Command { private readonly contexts; private commands; private index?; static from(state: RunState, contexts: Array>): HelpCommand; constructor(contexts: Array>); execute(): Promise; }