export interface WebChatAssistantProps {
    /**
     * The chatbot endpoint url
     */
    endpointUrl: string;
    /**
     * Optional starting message text
     */
    startMessage?: string;
}
export interface WebChatMessageProps {
    /**
     * The message text
     */
    text: string;
    /**
     * The sender of the message
     */
    sender: 'user' | 'bot';
    /**
     * Is the message a chunk?
     */
    isChunk?: boolean;
}
