import { EventEmitter } from '@angular/core'; import { ValidationService } from '../../services/validation.service'; import { ElementTrackerService } from '../../services/element-tracker.service'; import { WhenClauseService } from '../../services/whenClause.service'; import { HiddenFieldService } from '../../services/hidden-field.service'; import * as i0 from "@angular/core"; export declare class TextFieldsComponent { private validationService; private tracker; private whenClauseService; private hiddenFieldService; question: any; inLine: boolean; inCard: boolean; submissionIndex: number; answerChange: EventEmitter<{ answer: any; maxPossibleScore?: number | undefined; }>; answer: string; count: number; required: boolean; hint: string; placeholder: string; defaultValue: string; disableEdit: boolean; validationType: string; validation: string; regex: RegExp; enteredText: string; validationFailed: boolean; validationMessage: string; private elementId; private subscribedToWhenClause; constructor(validationService: ValidationService, tracker: ElementTrackerService, whenClauseService: WhenClauseService, hiddenFieldService: HiddenFieldService); ngOnInit(): void; valueAssigned(): void; validatetextField(): void; validateInput(event: any): void; updateChildLogics(question: any): void; evaluateCondition(answer: any, condition: string, inputValue: any): boolean; clearAnswersRecursively(logic: any): void; 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; }