import React from 'react'; import Channel from '../channels/Channel'; interface ChatbotProps { channels: Channel[]; } declare const Chatbot: React.FC; export default Chatbot;