import { ElementRef, OnDestroy, OnInit } from '@angular/core'; import { Actions } from '@ngrx/effects'; import { Channel } from '../../../models'; import { ChatService } from '../chat.service'; export declare class ChatPanelComponent implements OnInit, OnDestroy { chatService: ChatService; private actions; chat: ElementRef; form: { message: string; }; private subscription; constructor(chatService: ChatService, actions: Actions); ngOnInit(): void; ngOnDestroy(): void; submit(form: any, channel: Channel): void; resetForm(): void; }