#!/usr/bin/python3
import telebot
import CONFIGS
bot = telebot.TeleBot(CONFIGS.token)
@bot.message_handler(commands=['start'])
def start(message):
bot.send_message(message.chat.id, 'Здравствуй! Я могу помочь с выбором, что вы желаете?', parse_mode='none')
bot.polling(none_stop=True)
ERROR
bot = telebot.TeleBot(CONFIGS.token)
AttributeError: module 'telebot' has no attribute 'TeleBot'