export interface Choice { key: string; name: string; } export interface Props { choices: Choice[]; customStyle: object; selectedChoice: Choice; setSelectedChoice: Function; isDisabled: boolean; // eslint-disable-next-line @typescript-eslint/no-explicit-any theme: any; }