// Mock for web-push export const setVapidDetails = jest.fn(); export const sendNotification = jest.fn(); export interface PushSubscription { endpoint: string; keys: { p256dh: string; auth: string; }; } export interface SendResult { statusCode: number; body: string; headers: Record; }