/** * Types of notifications which can be received in inbox */ export type NotificationType = "mention" | "reply" | "subscribed" | "private_message" | "mod_action";