import { ResolvedConfig } from '../types/config'; import { AlertPayload, AlertSendResult, DailyReportPayload } from '../types/alert'; export declare class AlertService { private telegram?; private slack?; private discord?; private webhook?; private config; constructor(config: ResolvedConfig); sendSlowQueryAlert(payload: AlertPayload): Promise; sendDailyReport(payload: DailyReportPayload): Promise; testAllChannels(): Promise>; get activeChannels(): string[]; } //# sourceMappingURL=alertService.d.ts.map