import Command from './command.js';
import type { ArgumentsParsed } from '../types.js';
import type Bin from './bin.js';
declare class CommandHelp extends Command {
    constructor(bin: Bin);
    private getPrintMode;
    run(options: ArgumentsParsed, argv: string[]): Promise<void>;
}
export default CommandHelp;
