import type { ImageContent } from './image-content.js'; import type { TextContent } from './text-content.js'; /** * Representation of the 'MultiChatContent' schema. */ export type MultiChatContent = ImageContent | TextContent; //# sourceMappingURL=multi-chat-content.d.ts.map