export interface NotificationProvider { send(options: { to: string; subject: string; body: string; metadata?: any }): Promise; } export type NotificationChannel = 'email' | 'whatsapp' | 'sms' | 'custom';