import { InlineKeyboardButton } from '../types/telegram.js'; export interface SendTelegramWithButtonsParams { text: string; buttons: InlineKeyboardButton[][]; chatId?: string; parseMode?: 'HTML' | 'MarkdownV2'; } /** * Send Telegram message with inline keyboard buttons */ export declare function sendTelegramWithButtons(params: SendTelegramWithButtonsParams, botToken: string, defaultChatId: string): Promise;