/** * Build the default grouped help summary: one scannable line per command under * its group heading, with `[--json]` markers on the PR3 JSON surfaces. Also used * by the error paths (unknown command / parse failure) so those stay short. */ export declare function renderHelp(): string; /** The outcome of resolving a `help ` request. */ export type HelpTopicResult = { readonly ok: true; readonly text: string; } | { readonly ok: false; readonly message: string; }; /** * Resolve a `help ` request: `notes` prints the notes block, a command * (or its alias) prints that command's detail view, a removed command prints its * replacement pointer, and anything else is a usage error listing valid topics. */ export declare function renderHelpTopic(topic: string): HelpTopicResult; /** * The published CLI version, read from this package's own package.json at * runtime. `../package.json` resolves the same from both `src/cli.ts` (tests) and * the built `dist/cli.js` (one level below the package root in both layouts), and * npm always ships package.json in the tarball. Best-effort: a read failure yields * "unknown" rather than crashing `--version`. */ export declare function monoAgentVersion(): string; //# sourceMappingURL=cli-help.d.ts.map