export interface Notification { /** * The identifier of the notification. */ id: string; /** * The title of the notification. */ message: string; /** * The type of the notification. */ type: string; }