import React from 'react';
export interface ChatListT {
    text: string;
    isUser: boolean;
    timeStamp: string;
}
interface ChatConversationSectionProps {
    chatApiUrl: string;
    platformId: string;
    sessionId: string;
    authToken: string;
}
declare const ChatConversationSection: React.FC<ChatConversationSectionProps>;
export default ChatConversationSection;
