import { ChangeDetectorRef } from '@angular/core'; import { FormControl, FormGroup } from '@angular/forms'; import { AppService } from '../../services/app.service'; import { ChatService } from '../../services/chat.service'; import * as i0 from "@angular/core"; export declare class SimpleChatComponent { appService: AppService; chatService: ChatService; cdr: ChangeDetectorRef; $currentChat: import("@angular/core").WritableSignal<{ sender: string; message: string; }[]>; form: FormGroup<{ username: FormControl; message: FormControl; }>; constructor(); onFormSubmit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }