@rohitninawe/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
13 lines (12 loc) • 475 B
TypeScript
import { CometChat } from "@cometchat/chat-sdk-react-native";
import { AIAssistBotConfiguration } from './configuration';
interface AIAssistBotViewProps {
title: string;
configuration: AIAssistBotConfiguration;
closeCallback: () => void;
bot: CometChat.User;
sender: CometChat.User;
onSend: (question: string, bot: CometChat.User) => Promise<any>;
}
declare const AIAssistBotView: (props: AIAssistBotViewProps) => any;
export default AIAssistBotView;