import { NotificationType } from '../base/base-data.type'; import { NotificationInterface } from './notification.interface'; export declare class Notification implements NotificationInterface { text: string; title: string; type: NotificationType; createdTime: Date; constructor(text: string, title: string, type: NotificationType, seconds?: number); } //# sourceMappingURL=notification.model.d.ts.map