import "rxjs/add/operator/map"; import "rxjs/add/operator/mergeMap"; import "rxjs/add/operator/switchMap"; import { Router } from "@angular/router"; import { Observable } from "rxjs/Observable"; import { Actions } from "@ngrx/effects"; import { FormService } from "../services/form.service"; import { AddFormStartAction, AddFormSucceedAction, AddFormFailedAction } from "./add-form.actions"; export declare class AddFormEffects { private actions$; private router; private service; constructor(actions$: Actions, router: Router, service: FormService); AddForm$: Observable; AddFormStart$: Observable; }