import { AfterViewChecked, EventEmitter, OnInit } from "@angular/core"; import * as i0 from "@angular/core"; export declare enum InputTypes { text = "text", password = "password", email = "email" } export declare enum InputSizes { SM = "sm", MD = "md", LG = "lg" } export declare class InputComponent implements OnInit, AfterViewChecked { private inputElement; inputType: InputTypes; placeholder: string; value: string; autocomplete: boolean; readonly: boolean; isClearable: boolean; isValid: boolean | undefined; size: InputSizes; inputMode: "numeric" | "none"; autofocus: boolean; valueChange: EventEmitter; onEnterPressed: EventEmitter; onInputFocus: EventEmitter; onInputBlur: EventEmitter; onInputTab: EventEmitter; id: string; autoComplete: string; ngOnInit(): void; ngAfterViewChecked(): void; tabPressed(event: KeyboardEvent): void; changeInputValueFromOutside(value: string): void; clearInput(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }