import { Actions } from '@ngrx/effects';
import { Store } from '@ngrx/store';
import { AppState } from './../states/app.state';
import * as WorkItemTypeActions from './../actions/work-item-type.actions';
import { Observable } from 'rxjs';
import { WorkItemService } from './../services/work-item.service';
import { Notifications } from "ngx-base";
export declare type Action = WorkItemTypeActions.All;
export declare class WorkItemTypeEffects {
    private actions$;
    private workItemService;
    private store;
    private notifications;
    constructor(actions$: Actions, workItemService: WorkItemService, store: Store<AppState>, notifications: Notifications);
    getWorkItemTypes$: Observable<Action>;
}
