import { INotification, INotificationService, IUserService } from './types.js';
export declare class NotificationService implements INotificationService {
    private notifications;
    private userService;
    constructor(userService?: IUserService);
    setUserService(userService: IUserService): void;
    notify(notification: INotification): void;
    getNotificationsForUser(userId: string): INotification[];
    private logNotification;
}
//# sourceMappingURL=NotificationService.d.ts.map