import type { ReactElement } from 'react'; import type { ChatTranscriptMessage } from './use-chat-connection'; interface MessageTranscriptProps { messages: ChatTranscriptMessage[]; streaming: boolean; text: string; } export function MessageTranscript({ messages, streaming, text, }: MessageTranscriptProps): ReactElement { return (