export interface IrisSymptom { code: string; label: string; } export type IrisSymptoms = IrisSymptom[]; export interface Symptom { symptom: IrisSymptom; comment: string; }