/** * WeCom (Enterprise WeChat) notification channel */ import type { ChannelNotifier, NotificationMessage } from './types.js'; export declare class WeComNotifier implements ChannelNotifier { readonly channel: "wecom"; private readonly url; constructor(url: string); send(message: NotificationMessage | string): Promise; /** * Send a test message */ sendTest(): Promise; /** * Test the webhook configuration */ test(): Promise<{ success: boolean; error?: string; }>; private hasMarkdownFormatting; } //# sourceMappingURL=wecom.d.ts.map