import type { ChatbotMessage as ChatbotMessageType, AsyncContentGenerator } from '../../types'; type ChatbotMessageProps = { /** * The message content object. */ content: ChatbotMessageType; /** * Content generator object, if this message is streaming. */ contentGenerator?: AsyncContentGenerator; /** * Whether the message is loading. */ loading?: boolean; }; /** * Renders a chatbot message. * * @since 0.3.0 * * @param props - Component props. * @returns The component to be rendered. */ export default function ChatbotMessage(props: ChatbotMessageProps): import("react").JSX.Element; export {}; //# sourceMappingURL=chatbot-message.d.ts.map