export interface IEnSelectListItem {
  label: string;
  value: string;
  suboptions?: IEnSelectListItem[]
}
