/** * The ChatBridge provides a high-level integration between external chat adapters * (Slack, Telegram, etc.) and the ZilMate Manager. */ export declare function handleChatMessage(input: { text: string; authorId: string; platform: 'slack' | 'telegram' | 'teams' | 'discord' | 'imessage'; threadId?: string; onReply: (text: string) => Promise; onStep?: (label: string) => Promise; }): Promise; /** * Proactive reporting core. * Use this to push messages from background jobs to your chat channels. * This is FULLY IMPLEMENTED for Telegram and Slack. */ export declare function pushChatNotification(input: { message: string; platform: 'slack' | 'telegram' | 'imessage'; recipientId: string; threadId?: string; }): Promise<{ ok: boolean; platform: string; note?: never; } | { ok: boolean; platform: string; note: string; }>; //# sourceMappingURL=chat-bridge.d.ts.map