import NotificationEvent from '../models/NotificationEvent'; /** * Builds notification event object. */ declare class NotificationEventBuilder { _id: string; _title: string; _description: string; /** * Creates builder from {@link NotificationEvent} * @param notificationEvent object */ constructor(notificationEvent?: NotificationEvent); getId(): string; setId(value: string): NotificationEventBuilder; getTitle(): string; setTitle(value: string): NotificationEventBuilder; getDescription(): string; setDescription(value: string): NotificationEventBuilder; /** * Builds and validates notification event data. * @return {NotificationEvent} object */ build(): NotificationEvent; } export default NotificationEventBuilder; //# sourceMappingURL=NotificationEventBuilder.d.ts.map