import { EnglishArabicDTO } from "@bnsights/bbsf-controls"; import { QuestionFieldDTOOptions } from "./survey-field-options"; import { SurveyQuestionOptionDTO } from "./survey-question-option"; export declare class SurveyQuestionDTO { constructor(); ID: number; ID_GUID: string; SurveyID: string; QuestionTypeItemID: string; AudienceItemID: string; Text: EnglishArabicDTO; Description: EnglishArabicDTO; IsVisible: boolean; DisplayOrder: number; IsRequired: boolean; IsAllowScoring: boolean; IsRelatedToSurveyQuestion: boolean; TotalScore: number; Options: QuestionFieldDTOOptions; QuestionOptions: SurveyQuestionOptionDTO[]; }