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