import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models'; import { InputState } from '../../../../shared-form/enums'; export interface InputTextOptionsBase extends OptionsBase { placeholder?: string; tooltip?: string; mask?: string; minLength: number | null; maxLength: number | null; inputState: InputState; } export interface InputTextModel extends ComponentModelBase { options: InputTextOptionsBase; }