export declare enum NotificationType { info = "info", error = "error", success = "success", warning = "warning" } export declare class Notification { id?: number; type?: NotificationType; message?: string; ttl: number; timerId?: any; constructor(data: any); isInfo(): boolean; isError(): boolean; isSuccess(): boolean; isWarning(): boolean; }