import { OnInit, EventEmitter } from '@angular/core'; import { Comment, CommentService } from './comment.service'; export declare class CommentFormComponent implements OnInit { private commentService; parent: Comment; commentAdded: EventEmitter; comment: Comment; constructor(commentService: CommentService); new_comment(): { _id: string; message: string; name: string; email: string; parent_id: string; replying: boolean; unique_id: string; upvotes: number; downvotes: number; }; ngOnInit(): void; reset(): void; onSubmit(): void; }