export type TextContent = { type: "text"; text: string; }; export type ImageContent = { type: "image"; data: string; mimeType: string; }; export type ContentBlock = TextContent | ImageContent;