import { Actions } from '@ngrx/effects'; import { Observable } from 'rxjs'; import { ChatService } from '../chat.service'; import { ChatLoginFailure, ChatLoginSuccess, JoinRoom } from './actions'; export declare class ChatEffects { private actions$; private chatService; constructor(actions$: Actions, chatService: ChatService); login$: Observable; joinRoomsOnOnlineOrNewChannelsAdded: Observable; joinRoom$: Observable; outgoingMessage$: Observable; }