import { ComponentShell } from "../ComponentShell"; import { ValidationRule } from "../validation-rule"; import { SwitchMetadata } from "../switch/switch.metadata"; import { IComponentMapManager } from "../IComponentMapManager"; import { IExpressionManager } from "../IExpressionManager"; import { IHttpManager } from "../IHttpManager"; import { INavigationService } from "../INavigationService"; export declare class SwitchShell extends ComponentShell { private _formName; formName: string; private _key; key: string; private _checked; checked: boolean; private _checked$; checked$: string; private _label; label: string; private _label$; label$: string; private _hint; hint: string; private _hint$; hint$: string; private _onLabel; onLabel: string; private _onLabel$; onLabel$: string; private _offLabel; offLabel: string; private _offLabel$; offLabel$: 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 _tabindex; tabindex: number; private _order; order: number; private _validationRules; validationRules: Array; constructor(formName: string, switchetadata: SwitchMetadata, 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[]; }