import { ElementRef, Renderer2 } from "@angular/core"; import { NgControl } from "@angular/forms"; import { SpsIcon } from "@spscommerce/ds-shared"; import { SpsFormControlComponent } from "../forms/sps-form-control.abstract.component"; export declare class SpsTextInputComponent extends SpsFormControlComponent { static readonly displayName = "sps-text-input"; static readonly props: { placeholder: string; icon: string; }; placeholder: string; icon: SpsIcon; readonly _spsTextInputClass = true; inputElement: ElementRef; value: string; constructor(el: ElementRef, renderer: Renderer2, ngControl: NgControl); }