export type TextContent = { type: 'text'; text: string; }; export type TextContentResponse = { content: TextContent[]; };