/** * Human-readable rendering for the tools whose payload shape is stable and * whose output a person actually reads. * * Why not render everything: subcommands are generated from the server catalog, * so most payloads are whatever the server decides — printing them raw is * honest. But `lookup_datasets` is *the* place a number gets handed to a human, * and a number without its basis and link is not usable. Rendering it here also * keeps the opaque `key` off the screen: it is for the next tool call, never * for the reader. * * When the shape doesn't match, fall back to raw JSON rather than guessing. */ export declare function formatLookup(raw: string): string | undefined; /** Tool name → renderer. Anything not here prints the server payload as-is. */ export declare const RENDERERS: Record string | undefined>; //# sourceMappingURL=format.d.ts.map