import { Command } from "../command"; import { ReadlineRepl } from "../readline-repl"; export declare class Help extends Command { name: string; description: string; matchLine(line: string): boolean; run(repl: ReadlineRepl, text: string): Promise; }