import { IComboBoxData } from 'gl-w-combobox-frontend'; export interface IUpdateOptionList { options: IComboBoxData[]; listName: string; } export interface IResetAutocompleteValue { comboboxId: string; } export interface ISetAutocompleteValue { comboboxId: string; value: string; options: IComboBoxData[]; }