import { OnInit, EventEmitter } from '@angular/core'; import { ConfigService } from '../../services/config/config.service'; export declare class AnswerComponent implements OnInit { configService: ConfigService; editorState: any; showFormError: any; isReadOnlyMode: any; editorDataOutput: EventEmitter; constructor(configService: ConfigService); ngOnInit(): void; editorDataHandler(event: any): void; prepareAnwserData(event: any): { answer: any; editorState: { answer: any; }; name: string; qType: string; primaryCategory: string; }; }