type Notification = {
    id: number;
    type: string;
    subject: string;
    message: string;
    status: string;
    expiry_date: string;
};
export type { Notification };
