/** * Copyright (c) 2026 ByteDance Ltd. and/or its affiliates * SPDX-License-Identifier: MIT * * WebSocket monitoring for the Lark/Feishu channel plugin. * * Manages per-account WSClient connections and routes inbound Feishu * events (messages, bot membership changes, read receipts) to the * appropriate handlers. */ import type { MonitorFeishuOpts } from './types'; export type { MonitorFeishuOpts } from './types'; /** * Start monitoring for all enabled Feishu accounts (or a single * account when `opts.accountId` is specified). */ export declare function monitorFeishuProvider(opts?: MonitorFeishuOpts): Promise;