export interface WebhookConfig {
    url: string;
    type: 'discord' | 'slack' | 'custom';
    events: string[];
    active: boolean;
}
export declare function sendWebhook(config: WebhookConfig, event: string, data: Record<string, unknown>): Promise<boolean>;
//# sourceMappingURL=webhooks.d.ts.map