import { FormService } from '../form.service'; import { OnInit, ElementRef } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { InputBase } from '../input-base/input-base.component'; export declare class TextBoxComponent extends InputBase implements OnInit { class: string; fg: FormGroup; placeholder: string; field: string; label: string; floatingLabel: boolean; leftIcon: string; rightIcon: string; value: string; disabled: boolean; alt: boolean; required: boolean; min: number; max: number; constructor(el: ElementRef, formService: FormService); addValidators(): void; ngOnInit(): void; ngOnDestroy(): void; }