/** * Helpers for shaping MCP tool replies. Every tool returns a `content` * array; each entry is `{ type: 'text', text: '...' }`. JSON payloads * are stringified into a single text entry — clients can JSON.parse. */ export declare function textResult(text: string): { content: { type: "text"; text: string; }[]; }; export declare function jsonResult(value: unknown): { content: { type: "text"; text: string; }[]; }; //# sourceMappingURL=reply.d.ts.map