export declare function jsonContent(data: unknown): { content: { type: "text"; text: string; }[]; }; export declare function textContent(text: string): { content: { type: "text"; text: string; }[]; }; export declare function errorContent(message: string): { content: { type: "text"; text: string; }[]; isError: true; };