import { Store } from '@ngrx/store';
import { Actions } from '@ngrx/effects';
import * as CommentActions from './../actions/comment.actions';
import { AppState } from './../states/app.state';
import { Observable } from 'rxjs';
import { WorkItemService } from './../services/work-item.service';
import { Notifications } from "ngx-base";
import { UserMapper } from './../models/user';
export declare type Action = CommentActions.All;
export declare class CommentEffects {
    private actions$;
    private workItemService;
    private store;
    private userMapper;
    private notifications;
    constructor(actions$: Actions, workItemService: WorkItemService, store: Store<AppState>, userMapper: UserMapper, notifications: Notifications);
    getWorkItemComments$: Observable<Action>;
    addComment$: Observable<Action>;
    updateComment$: Observable<Action>;
    deleteComment$: Observable<Action>;
}
