import { AfterViewChecked, ChangeDetectorRef, EventEmitter } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { InputTypes } from '../../models/Input-types'; import * as i0 from "@angular/core"; export declare class TextboxComponent implements ControlValueAccessor, AfterViewChecked { private readonly changeDetectorRef; formGroup?: any; formControlName?: any; id?: string; type?: any; model: any; disabled: boolean; placeholder: string; value: any; dir?: string; errorMessage: string; autocomplete: string; mask: string; thousandSeparator: string; decimalMarker: any; inputTypes: typeof InputTypes; onChange: any; onTouched: any; constructor(changeDetectorRef: ChangeDetectorRef); ngAfterViewChecked(): void; writeValue(value: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; valueChange: EventEmitter; onValueChange(e: any): void; onKeyUp(e: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }