/**
 * Help command implementation
 */
import { CLIOptions, Command } from '../../types';
/**
 * Help command to display usage information
 */
export declare class HelpCommand implements Command {
    readonly name = "help";
    readonly description = "Display help information";
    /**
     * Execute the help command
     */
    execute(_options: CLIOptions): Promise<void>;
}
//# sourceMappingURL=help.d.ts.map