export interface Item { text: string; value?: string; } export type GroupType = 'operators' | 'comparisons'; export interface itemGroup { group: GroupType; items: Item[]; }