import { ComponentShell } from "../ComponentShell"; import { TextAreaMetadata } from "../textarea/textarea.metadata"; import { IComponentMapManager } from "../IComponentMapManager"; import { IExpressionManager } from "../IExpressionManager"; import { IHttpManager } from "../IHttpManager"; import { INavigationService } from "../INavigationService"; export declare class TextAreaShell extends ComponentShell { private _formName; formName: string; private _key; key: string; private _value; value: string; private _value$; value$: string; private _label; label: string; private _label$; label$: string; private _hint; hint: string; private _hint$; hint$: string; private _placeholder; placeholder: string; private _placeholder$; placeholder$: string; private _disabled; disabled: boolean; private _disabled$; disabled$: string; private _visible; visible: boolean; private _visible$; visible$: string; private _required; required: boolean; private _required$; required$: string; private _readonly; readonly: boolean; private _readonly$; readonly$: string; private _autocomplete; autocomplete: boolean; private _spellcheck; spellcheck: boolean; private _maxlength; maxlength: number; private _validationErrorr; validationError: string; private _validationError$; validationError$: string; private _tabindex; tabindex: number; private _order; order: number; constructor(formName: string, textboxMetadata: TextAreaMetadata, componentMapManager: IComponentMapManager, expressionManager: IExpressionManager, httpManager: IHttpManager, navigationService: INavigationService); getFormName(): string; getControlName(): string; onAddExpression(): void; objectMap(): void; getShellSchema(): any; getShellTypeName(): string; /** * Form post edilirken gönderilecek mi? */ readonly isFormValue: boolean; /** * Form post edilirken gönderilecek veri */ getFormValue(): any; readonly isValid: boolean; getValidationErrors(): string[] | undefined; }