import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models'; import { InputState } from '../../../../shared-form/enums'; export interface InputSwitchOptionsBase extends OptionsBase { tooltip?: string; switchTextOn: string; switchTextOff: string; switchType: number; inputState: InputState; } export interface InputSwitchModel extends ComponentModelBase { options: InputSwitchOptionsBase; }