import { Core } from '@strapi/strapi'; import { KoniBot } from "../../bot/koni-bot"; import { Telegraf } from "telegraf"; interface BotConfig { username: string; token: string; miniapp?: string; } export declare function getBotConfigs(): BotConfig[]; declare const KoniBotService: ({ strapi }: { strapi: Core.Strapi; }) => { defaultBotName: string; _initBotMap: boolean; _botMap: Record; readonly botMap: Record; getBotHandler(name?: string): KoniBot; getBot(name?: string): Telegraf; launch(): Promise; stop(): Promise; }; export type KoniBotServiceType = ReturnType; export default KoniBotService;