import { NotificationDetails, NotificationDetailsType } from './details/notificationDetails'; import { AbstractEntity } from '../../abstractEntity'; export declare enum NotificationsFields { COLUMN_NOTIFICATIONS = "notifications" } export declare type NotificationsType = { [NotificationsFields.COLUMN_NOTIFICATIONS]: NotificationDetailsType[]; }; export declare class Notifications extends AbstractEntity { #private; constructor(notification: NotificationsType); get notifications(): NotificationDetails[]; toJSON(): NotificationsType; }