import type { Thread } from 'chat'; import type { BridgeExecutionContext, BridgeMessageContextParams, BridgeResumeExecutionContext, BridgeStatusHandle } from '../agent-chat-integration'; export declare function createTelegramBridgeExecutionContext(params: BridgeMessageContextParams): BridgeExecutionContext; export declare function createTelegramResumeExecutionContext(params: { thread: Thread; logger: BridgeMessageContextParams['logger']; agentId: string; }): BridgeResumeExecutionContext; export declare function startTelegramTypingIndicator(thread: Thread, options: { logger: BridgeMessageContextParams['logger']; agentId: string; }): BridgeStatusHandle;