import { ComponentShell } from "../ComponentShell"; import { ValidationRule } from "../validation-rule"; import { TextBoxMetadata } from "../textbox/textbox-metadata"; import { IComponentMapManager } from "../IComponentMapManager"; import { IExpressionManager } from "../IExpressionManager"; import { IHttpManager } from "../IHttpManager"; import { INavigationService } from "../INavigationService"; export declare class TextboxShell extends ComponentShell { private _formName; formName: string; private _key; key: string; private _value; value: string | undefined; private _value$; value$: string; private _label; label: string; private _label$; label$: string; private _hint; hint: string; private _hint$; hint$: string; private _mask; mask: string; private _mask$; mask$: string; private _mode; mode: 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; private _validationRules; validationRules: Array; constructor(formName: string, textboxMetadata: TextBoxMetadata, 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[]; reset(): void; }