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 {
    showHelp(argv: string[]): Promise<void>;
    getCustomRootHelp(showAllCommands: boolean): string;
    protected formatGlobalOpts(opts: string[][]): string;
    protected formatCommands(commands: Array<Command.Loadable | ResolvableReturnType<Command.Loadable['load']>>): string;
    protected formatDescription(desc?: string): string;
    readonly manuallySortedPrimaryCommands: string[];
}
