import { INotification } from './INotification'; import { NotificationProperties } from './NotificationProperties'; export declare class NotificationFactory { protected classType: { new (properties: NotificationProperties): U; }; constructor(classType: { new (properties: NotificationProperties): U; }); create(properties: NotificationProperties): U; }