import { EventEmitter, SimpleChanges } from '@angular/core'; import * as i0 from "@angular/core"; export declare class TextFieldComponent { /** Label of text field */ /** Placeholder of text field */ placeholder: string; /** Helper text to show at bottom of text field */ helperText: string; initialValue: string; /** Whether show counter or not */ showCounter: boolean; /** Maximum characters allowed in text field */ maxLength: number; /** Number of rows to size text field */ rows: number; /** Number of columns to size text field */ cols: number; /** Error message to show; if available */ errorMessage: string; /** Disabling text field */ disabled: boolean; /** Emitting change of text field */ value: EventEmitter; private _value; private onChange; private onTouched; /** Counter to show number of characters present in text field */ counter: number; /** Handling value change */ ngOnChanges(changes: SimpleChanges): void; changeInputValue(event: Event): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }