import './ChatbotError.css'; interface IChatbotErrorProps { message: string; } declare const ChatbotError: ({ message }: IChatbotErrorProps) => JSX.Element; export default ChatbotError;