import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models'; import { InnTypeEnum, InputState } from '../../../../shared-form/enums'; export interface InputINNOptionsBase extends OptionsBase { placeholder?: string; tooltip?: string; inputState: InputState; viewType: InnTypeEnum; } export interface InputINNModel extends ComponentModelBase { options: InputINNOptionsBase; }