import type { InbandTool } from "./types.js"; /** * Tool catalog in the OpenAI-Harmony `namespace functions { … }` shape: each * tool renders as its full description (and Python-syntax examples) as `//` * comment lines above a flat `type = (_: {…});` declaration. Shared by * the verbose system-prompt inventory and `/dump` so both render the catalog * the same way. */ export declare function renderToolInventory(tools: readonly InbandTool[]): string;