import type { Command } from '@oclif/core'; import { Help } from '@oclif/core'; import type { ResolvableReturnType } from 'balena-sdk/typings/utils'; export default class BalenaHelp extends Help { private formatCommandsTitle; showCommandHelp(command: Command.Loadable): Promise; showHelp(argv: string[]): Promise; getCustomRootHelp(showAllCommands: boolean): Promise; protected formatGlobalOpts(opts: string[][]): string; protected formatCommands(commands: Array>): string; protected formatDescription(desc?: string): string; readonly manuallySortedPrimaryCommands: string[]; }