import type { UserChatMessageContent } from './user-chat-message-content.js'; /** * Representation of the 'UserChatMessage' schema. */ export type UserChatMessage = { content: UserChatMessageContent; role: 'user'; }; //# sourceMappingURL=user-chat-message.d.ts.map