import { ITelegramService } from './ITelegramService.interface'; import { IMessageBody } from '../common/model/IMessageBody.interface'; export declare class TelegramService implements ITelegramService { private readonly token; private readonly timeout; private offset; constructor(token: string, timeout: number); getUpdates(): Promise; sendPhoto(chatId: number | string, photoPath: string): Promise; getWebhookUrl(): Promise; setWebhook(url: string): Promise; }