import type { TelegramAccountConfig, TelegramGroupConfig, TelegramTopicConfig } from './config-types.js'; export interface ResolvedTelegramGroupContext { groupConfig?: TelegramGroupConfig; topicConfig?: TelegramTopicConfig; systemPrompt?: string; agentId?: string; } export declare function resolveTelegramGroupContext(params: { account: TelegramAccountConfig; chatId: string; threadId?: string | number; }): ResolvedTelegramGroupContext;