/** * Help command - Show help information */ export interface HelpOptions { output?: 'json' | 'text' | 'pretty'; json?: boolean; } export declare function execute(args: string[], options: HelpOptions): Promise;