import type { IChannel } from "../types.js"; export interface DingTalkChannelConfig { clientId: string; clientSecret: string; /** 默认绑定的 agentId */ defaultAgentId?: string; } /** * 钉钉通道:Stream 入站 + Webhook 出站,共用一个 DWClient。 */ export declare function createDingTalkChannel(config: DingTalkChannelConfig): IChannel;