import { Observable } from "rxjs/Observable"; import { Actions } from "@ngrx/effects"; import { UserService } from "../services/user.service"; import { GetProfileStart, GetProfileSucceed, GetProfileFailed } from "./profile-view.actions"; import { RefreshUserInfoAction } from "../dashboard/user.actions"; export declare class ProfileViewEffects { private actions$; private userService; constructor(actions$: Actions, userService: UserService); ProfileRequest$: Observable; getProfile$: Observable; refreshUserInfo$: Observable; }