import { EventEmitter } from '@angular/core'; import { GasForm } from '../../gas-form.namespace'; export declare class GasSwitchControlComponent { value: string | boolean; isDisabled: string | boolean; isError: string | boolean; state: GasForm.InputState | string; /** @deprecated */ enabledText: string; /** @deprecated */ disabledText: string; get isPrimarySwitch(): boolean; get isSuccessSwitch(): boolean; get isDisabledSwitch(): boolean; onSwitchChange$: EventEmitter; toggleSwitch(): void; getCheckedValue(): string; getNoCheckedValue(): string; }