import { Type } from '@angular/core'; export declare type NotificationType = "info" | "warning" | "error" | "success"; export declare class NotificationSettings { type: NotificationType; notifyText: string; notifyTitle: string; sticky: boolean; hasCustomContent: boolean; duration: number; innerComponentType: Type; innerComponentOptions: any; constructor(type: NotificationType, notifyText: string, notifyTitle: string, duration?: number, sticky?: boolean, hasCustomContent?: boolean, innerComponentType?: Type, innerComponentOptions?: any); }