import { BaseCommand } from '../BaseCommand';
import { CommandContract } from '../Contracts';
/**
 * The help command for print the help output
 */
export declare class HelpCommand extends BaseCommand implements CommandContract {
    static commandName: string;
    static description: string;
    run(): Promise<void>;
}
