For the following types:
interface BaseQuestionType { label?: string } export type RadioQuestionType = BaseQuestionType & { type: \'radio\' } export t