export interface NotificationOptions { title: string; message: string; priority?: number; } export interface NotificationService { notify(options: NotificationOptions): Promise; }