@youwen/ai-design-system
Version:
Enterprise AI-driven design system with comprehensive design tokens
12 lines (11 loc) • 323 B
TypeScript
import React from 'react';
interface ChatbotProps {
className?: string;
onMessage?: (message: string) => void;
placeholder?: string;
disabled?: boolean;
title?: string;
generateResponse?: (userInput: string) => string;
}
export declare const Chatbot: React.FC<ChatbotProps>;
export default Chatbot;