import { QuestionType } from 'src/common/enum/question-type.enum';
import { AnswerType } from 'src/common/enum/answer-type.enum';
export declare class CreateTemplateQuestionDto {
    templateFormSectionId: number;
    masterQuestionId?: number;
    questionCode: string;
    bindingKey: string;
    questionText: string;
    questionType: QuestionType;
    answerType: AnswerType;
    answerLocation?: string;
    optionConfig?: Record<string, any>[];
    config: Record<string, any>;
    conditionalConfig?: Record<string, any>;
    displayOrder?: number;
    createdBy?: number;
}
