import { Command } from 'commander'; import { type CliResultV1 } from '@nexusclaw/shared'; import { type CliMachineOutputStreams } from '../../contracts'; export declare const AI_HELP_ALL_IMPLEMENTATION_ID = "nexus-cli/ai.help#all@v1"; export declare const AI_HELP_SINGLE_IMPLEMENTATION_ID = "nexus-cli/ai.help#single@v1"; export interface AiHelpOptions { all?: boolean; command?: string; includePlanned?: boolean; json?: boolean; } export declare function buildAiHelpResult(options: AiHelpOptions, program?: Command): CliResultV1; export declare function createAiHelpCommand(streams?: CliMachineOutputStreams): Command; export declare const aiHelpCommand: Command;