import { Rule, RuleCollection } from './Rule'; export declare class HelpDumper { dumpCommands(children: RuleCollection, stream: any, indentation: string): Promise; dumpParameters(children: RuleCollection, stream: any, indentation: string): number; dumpSingle(rule: Rule, stream: any, indentation: string): Promise; dump(rules: Rule, stream: any, indentation?: string): Promise; } export default HelpDumper;