/** * Process Telegram update * Called by base-agent worker for each Update object * * @module agents/workers/process-update */ /** * Execute update processing via TelegramBotClient * * @param update - Telegram Update object to process * @param tasks - Array of tasks (not used for long polling) * @param shutdownRequested - Function to check if shutdown is requested */ export declare function executeTasks(update: any, tasks: any[], shutdownRequested: () => boolean): Promise;