export declare const compoundHelpParents: readonly ["dep", "msg", "diag", "auto", "sync", "trace", "bulk", "doc", "spec", "memory", "utils", "pin", "skills", "guard", "gate", "verify", "label", "claim", "outbox", "group-context", "ack"]; export declare const deprecatedCommandMap: Record; export type ParsedCliArgument = { name: string; required: boolean; description?: string; }; export type ParsedCliOption = { flags: string[]; valueName?: string; description?: string; }; export type ParsedCliSubcommand = { name: string; description?: string; }; export type CommandSchema = { key: string; commandLabel: string; summary: string; rawHelp: string; aliases: string[]; deprecatedTo?: string; usage: string[]; arguments: ParsedCliArgument[]; options: ParsedCliOption[]; subcommands: ParsedCliSubcommand[]; examples: string[]; }; export type CommandCatalogEntry = { key: string; commandLabel: string; summary: string; aliases: string[]; deprecatedTo?: string; parent?: string; subcommands: string[]; }; export declare function resolveCommandKey(parts: string[]): string | null; export declare function buildCommandSchema(key: string): CommandSchema; export declare function buildCommandCatalog(): CommandCatalogEntry[]; export declare function buildHelpPayload(parts: string[]): Record; export declare function buildSchemaPayload(parts: string[]): Record; //# sourceMappingURL=help-registry.d.ts.map