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