import { OptionsBase, SelectListItem, ComponentModelBase } from '../../../../shared-form/models'; import { InputState } from '../../../../shared-form/enums'; export interface InputPhoneOptionsBase extends OptionsBase { placeholder?: string; inputState: InputState; tooltip?: string; countries: SelectListItem[]; } export interface InputPhoneModel extends ComponentModelBase { options: InputPhoneOptionsBase; }