import { FormGroup } from '@angular/forms'; import { EventEmitter, OnChanges, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core'; import { Sizes } from '../../../shared/enums/size.enum'; import { Field } from '../../../core/field/abstract/field'; export declare class InputComponent extends Field implements OnInit, OnChanges { private readonly viewRef; sizeIcon: string; isSuccess: boolean; value: string; readonly size: Sizes; readonly name: string; readonly label: string; readonly iconLeft: string; readonly iconRight: string; readonly isLoading: boolean; readonly placeholder: string; readonly forceError: boolean; readonly isDisabled: boolean; readonly formGroup: FormGroup; readonly type: string; readonly fireClickIconRight: EventEmitter; constructor(viewRef: ViewContainerRef); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; readonly hasError: boolean; onBlur(): void; onFocus(): void; }