import { Command } from '../Command';
/**
 * A command that prints the usage of all commands.
 *
 * Paths: `-h`, `--help`
 */
export declare class HelpCommand extends Command<any> {
    static paths: string[][];
    execute(): Promise<void>;
}
