import { EventEmitter } from '@angular/core'; import { ControlValueAccessor } from "@angular/forms"; import * as i0 from "@angular/core"; export declare class InputComponent implements ControlValueAccessor { label?: string; placeholder?: string; error?: string; disabled: boolean; type: string; icon?: string; value: string; mask: string | null; blurEvent: EventEmitter; isPasswordVisible: boolean; togglePasswordVisibility(): void; onTouched: () => void; onChange: (value: any) => void; onBlur(): void; onInput(event: Event): void; writeValue(value: string): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState?(isDisabled: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }