import type { ReplyToMode } from '@xopcai/xopc/channels/channel-domain.js'; /** Per-chat tracker so `replyToMode: first` only applies reply once per inbound turn. */ export declare class TelegramReplyTracker { private firstUsed; private key; reset(accountId: string, chatId: string): void; resolveReplyToMessageId(params: { mode?: ReplyToMode; explicitReplyTo?: string; inboundMessageId?: string; accountId: string; chatId: string; }): string | undefined; } export declare const telegramReplyTracker: TelegramReplyTracker;