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