export declare class TextComponent { private tooltipId; private errors; private config; private oldAutofocus; private inputElement; rootElement: HTMLElement; name: string; label: string; placeholder: string; aid: string; min: string | number; max: string | number; required: boolean; pattern: string; inline: boolean; readOnly: boolean; autocomplete: string | "on" | "off"; autofocus: boolean; value: string; isValid: boolean; componentWillRender(): void; componentDidRender(): void; render(): any; private renderField; private handleBlur; private toHandleBlur; }