/* eslint-disable @typescript-eslint/no-explicit-any */ export interface Choice { id?: number; customProperties?: Record; disabled?: boolean; active?: boolean; elementId?: number; groupId?: number; keyCode?: number; label: string; placeholder?: boolean; selected?: boolean; value: string; score?: number; choices?: Choice[]; }