import { EventEmitter } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { InputI } from '../../../interfaces/input.interface'; import * as i0 from "@angular/core"; export declare class InputComponent implements ControlValueAccessor, InputI { inputLabel?: string; type?: InputType; value: string; placeholder: string; isDisabled: boolean; name: string; btnIcon?: string; hasBtn: boolean; error?: string; showError?: boolean; focus: EventEmitter; blur: EventEmitter; valueChange: EventEmitter; btnClick: EventEmitter; onChange: (_: string | undefined) => void; onTouch: () => void; btnClicked(): void; inputChange(value: EventTarget | null): void; inputFocus(): void; inputBlur(): void; writeValue(value: string | undefined): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState(isDisabled: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export type InputType = 'email' | 'number' | 'text' | 'password';