export interface Notification { id: string; type: T; style: Notification.Style; title: string; description: string; actions: Notification.Action[]; } export declare namespace Notification { enum Style { SUCCESS = "success", INFO = "info", WARNING = "warning", DANGER = "danger", SETUP = "setup" } interface Action { target: string; name: string; } }