import { EventEmitter } from '@angular/core'; import { FormService } from '../../services/form.service'; import { ValidationService } from '../../services/validation.service'; import { ElementTrackerService } from '../../services/element-tracker.service'; import { ScoreCalculationService } from '../../services/score.service'; import { WhenClauseService } from '../../services/whenClause.service'; import { HiddenFieldService } from '../../services/hidden-field.service'; import * as i0 from "@angular/core"; export declare class RadioButtonFieldsComponent { private formService; private validationService; private tracker; private scoreCalcService; private whenClauseService; private hiddenFieldService; question: any; inLine: boolean; inCard: boolean; submissionIndex: number; answerChange: EventEmitter<{ answer: any; maxPossibleScore?: number | undefined; }>; rowId: number; count: number; required: boolean; hint: string; color: string; minimumSelection: number; maximumSelection: number; optionType: string; lookupTable: string; customOptions: any[]; database: any; api: any; apiOptions: any[]; selectedOption: any; validationFailed: boolean; validationMessage: string; displayOptionsInColumn: boolean; maxPossibleScore?: number; disableEdit: boolean; private elementId; private subscribedToWhenClause; constructor(formService: FormService, validationService: ValidationService, tracker: ElementTrackerService, scoreCalcService: ScoreCalculationService, whenClauseService: WhenClauseService, hiddenFieldService: HiddenFieldService); ngOnInit(): void; valueAssigned(): void; initializeOption(): void; fetchDataFromLookup(): void; fetchDataFromDatabase(): void; transformDatabaseObject(database: any): { tableName: any; valueField: any; labelField: any; labelPattern: any; criteria: any; }; fetchDataFromAPI(): void; extractDataByPath(data: any, path: string): any; validateInput(): void; updateChildLogics(question: any): void; clearAnswersRecursively(logic: any): void; evaluateCondition(answer: any, condition: string, inputValue: any): boolean; handleValidation(isValid: boolean, message?: string): void; private buildElementId; get isInvalid(): boolean; get errorMessage(): string | null; ngAfterViewInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }