import { ElementRef } from '@angular/core'; import { UkhoAbstractFormField } from '../form-field/form-field'; export declare class TextareaComponent extends UkhoAbstractFormField { /** * A reference to the input element within the wrapper component */ input: ElementRef; /** * The label which will be used as a placeholder in the unfilled state, and as a field label in the filled state. */ label: string; text: string; /** * @ignore */ writeValue(value: string): void; }