import { LOG_LEVEL } from "../constants"; import { AuditGateway, HttpService } from "../interfaces"; interface WebhookAuditGatewayConfig { projectName: string; } export declare class WebhookAuditGateway implements AuditGateway { protected webhookURL: string; protected httpService: HttpService; protected config: WebhookAuditGatewayConfig; static contentField: string; constructor(webhookURL: string, httpService: HttpService, config: WebhookAuditGatewayConfig); publish(logId: string, level: LOG_LEVEL, content: any): Promise; } export {};