export interface CommandManifestEntry { id: string; command: string; usage: string; summary: string; requiredFlags: string[]; optionalFlags: string[]; supportsJson: boolean; aliases: string[]; example: string; schemaRef?: string; messageRef?: string; compatibility: "stable" | "experimental"; surface: "public" | "experimental" | "internal"; contractVersion?: "1.0"; exitCodes?: number[]; errorShape?: "json-error" | "human-readable"; deprecated?: { since: string; replacement: string; removal?: string; }; } export declare const COMMAND_HELP_INTRO = "First visible value: orchestra init, orchestra health --json, orchestra task add, orchestra workflow run --gates none, then orchestra status."; export declare function listCommandManifest(): CommandManifestEntry[]; export declare function renderCommandHelp(): string; export declare function renderCommandCatalogHelp(): string; export declare function renderCommandNamespaceHelp(namespace: string): string; export declare function hasCommandNamespaceHelp(namespace: string): boolean; export declare function hasCommandHelpEntry(command: string): boolean; export declare function renderHelpTopic(topic?: string): string;