import { OnInit, EventEmitter, SimpleChanges, OnChanges } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { Subscription } from 'rxjs'; import { ReactiveFormService } from '../../services/reactive-form.service'; export declare class TextboxComponent implements OnInit, OnChanges { formService: ReactiveFormService; fieldObj: any; options: any; values: any; form: FormGroup; valueChange: EventEmitter; emailPattern: any; isHideExpression: boolean; subscriptions: Subscription[]; prevValue: any; constructor(formService: ReactiveFormService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; notifyChange(event: any): void; hideExpression(): void; setValidations(): void; clearValidations(): void; ngOnDestroy(): void; }