import { Command } from 'commander'; export interface HelpTextOptions { examples?: string[]; outputJson?: string; relatedCommands?: Array<{ command: string; description: string; }>; notes?: string[]; } /** * Add enhanced help text to a command with examples, output format, related commands, and notes */ export declare function addEnhancedHelp(command: Command, options: HelpTextOptions): Command; //# sourceMappingURL=helpText.d.ts.map