import { AppHistoryState } from '../sdk'; import { Answer } from '../survey/models'; export interface SurveySelection { questionId: string; answers: Array; selections?: Array<{ id: string; answer: Answer; }>; } export interface SelectedAnswer { answerId: string; customValue?: string; } export interface SurveyPartialResult { surveyId: string; sessionId: string; selections: Array; sdkData: AppHistoryState; }