import { EventEmitter, OnChanges } from '@angular/core'; import { UtilService } from '../util-service'; export declare class McqOptionComponent implements OnChanges { utilService: UtilService; shuffleOptions: boolean; mcqOptions: any; solutions: any; layout: any; cardinality: string; showPopup: EventEmitter; optionSelected: EventEmitter; selectedOption: any[]; replayed: boolean; tryAgain?: boolean; constructor(utilService: UtilService); ngOnChanges(): void; unselectOption(): void; onOptionSelect(event: MouseEvent | KeyboardEvent, mcqOption: any, index?: number): void; onImageOptionSelected(event: any): void; showQumlPopup(): void; onEnter(event: KeyboardEvent, mcqOption: any, index: number): void; }