import { RequestContext } from '../logging'; import { Report } from '../helpers'; /** * Sends alert to discord using axiosPost * @param report The report that will be sent in the alert * @param discordHookUrl The discord webhook url * @param requestContext The request context for the logger * @returns The response from discord */ export declare const alertDiscord: (report: Report, discordHookUrl: string, requestContext: RequestContext) => Promise; /** * Sends a resolution alert to Discord using axiosPost * @param report The report that will be sent in the resolution alert * @param webhookUrl The Discord webhook URL * @param requestContext The request context for the logger * @returns A Promise that resolves when the Discord message is sent */ export declare function resolveDiscordAlert(report: Report, webhookUrl: string | undefined, requestContext: RequestContext): Promise; //# sourceMappingURL=discord.d.ts.map