import React from 'react'; import { MessageType } from '../../types/ai-chat'; type MessageProps = { message: MessageType; isLastAiMessage: boolean; streamingText: string; }; declare const Message: React.FC; export default Message; //# sourceMappingURL=Message.d.ts.map