import { AppState } from './../states/app.state';
import { Actions } from "@ngrx/effects";
import { Observable } from "rxjs";
import { Action, Store } from '@ngrx/store';
import { Notifications } from "ngx-base";
import { IterationService } from '.././services/iteration.service';
import { IterationUI } from "../models/iteration.model";
export declare class IterationEffects {
    private actions$;
    private iterationService;
    private notifications;
    private store;
    constructor(actions$: Actions, iterationService: IterationService, notifications: Notifications, store: Store<AppState>);
    resolveChildren(iterations: IterationUI[]): IterationUI[];
    getIterations$: Observable<Action>;
    addIteration$: Observable<Action>;
    updateIteration$: Observable<Action>;
}
