export declare class TelegramService {
    private botToken;
    private baseUrl;
    constructor(botToken: string);
    sendMessage(chatId: number, text: string, options?: any): Promise<any>;
    sendInteractiveMessage(chatId: number, text: string, buttons: any[]): Promise<any>;
    answerCallbackQuery(callbackQueryId: string, text?: string): Promise<any>;
    getBotInfo(): Promise<any>;
    setWebhook(url: string): Promise<any>;
    getWebhookInfo(): Promise<any>;
}
//# sourceMappingURL=TelegramService.d.ts.map