import { QuestionType } from 'src/common/enum/question-type.enum';
import { AnswerType } from 'src/common/enum/answer-type.enum';
export declare class FilterMasterQuestionDto {
    limit?: number;
    offset?: number;
    searchText?: string;
    isActive?: boolean;
    masterFormSectionId?: number;
    questionType?: QuestionType;
    answerType?: AnswerType;
}
