/** * DingTalk notification channel */ import type { ChannelNotifier, NotificationMessage } from './types.js'; export declare class DingTalkNotifier implements ChannelNotifier { readonly channel: "dingtalk"; private readonly url; constructor(url: string); send(message: NotificationMessage): Promise; /** * Send a test message */ sendTest(): Promise; /** * Test the webhook configuration */ test(): Promise; } //# sourceMappingURL=dingtalk.d.ts.map