export type TQuestionType = "text" | "radio" | "checkbox";

export interface TVitalFarmsQuestion {
  questionType: TQuestionType;
  questionLabel: string;
}

export type TStoreAnswers = Record<string, string | string[]>;
