import { NotificationResponse } from '../../notification/interfaces/notification-response.interface'; import { IconClasses } from './icon-classes.enum'; import { NotificationType } from './notification-type.enum'; export declare class Notification { title: string; message: string; type: NotificationType; constructor(response?: NotificationResponse); getToastType(): IconClasses; }