import type { IChannel } from "../types.js"; export interface FeishuChannelConfig { appId: string; appSecret: string; /** 默认绑定的 agentId */ defaultAgentId?: string; } /** * 飞书通道:WebSocket 入站 + API 出站,使用官方 Node SDK。 */ export declare function createFeishuChannel(config: FeishuChannelConfig): IChannel;