export interface NotificationMessage { title: string; message: string; priority?: number; // 0-10, Gotify style } export interface NotificationService { notify(message: NotificationMessage): Promise; }