import { TRiskChoice } from './riskChoice.model'; export interface TRiskQuestions { Heading: string; Question: string; Options: TRiskOptions[]; selectedChoiceId: number; choices: TRiskChoice[]; } export interface TRiskOptions { Key: string; Value: any; Label?: any; Percentage?: number; }