export interface NotificationProvider { send(options: { to: string; subject: string; body: string; metadata?: any; }): Promise; } export type NotificationChannel = 'email' | 'whatsapp' | 'sms' | 'custom'; //# sourceMappingURL=notification-provider.interface.d.ts.map