import type { SessionStats } from '../session.js'; export interface WebhookPayload { event: 'cost_alert'; session: { sessionId: string; projectDir: string; totalCostUsd: number; assistantTurnCount: number; }; threshold: number; message: string; } export declare function fireAlertWebhooks(allStats: SessionStats[]): Promise; //# sourceMappingURL=webhook.d.ts.map