import { FormGroup, FormBuilder } from '@angular/forms'; import { TestLogger } from './../../services/index'; import { IEntityContainer } from './../../interfaces/index'; export declare class SuperTextboxWrapperControl { private logger; private fb; parent: IEntityContainer; customizedForm: FormGroup; propertyName: string; height: number; private validators; private isHighlight; constructor(logger: TestLogger, fb: FormBuilder); setParentComponent(parentComponent: IEntityContainer, propertyName: string): void; changeValue(value: any): void; }