import { FC } from 'react'; import { MessageResponse as BaseMessageResponse, HumanAgent, VirtualAgent } from '@ujet/websdk-headless'; interface MessageResponse extends BaseMessageResponse { to_agent?: HumanAgent; pending?: boolean; } interface ChatbotMessageProps { msg: MessageResponse; showAvatar?: boolean; showName?: boolean; virtualAgent?: VirtualAgent | null; onCancelEndChat?: () => void; onSend?: (content: string) => void; onEndChat?: () => void; inputRef: React.RefObject; } export declare const ChatbotMessage: FC; export {};