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