import { User } from './user.entity';
import { MasterFormSection } from './master-form-section.entity';
import { QuestionType } from '../enum/question-type.enum';
import { AnswerType } from '../enum/answer-type.enum';
export declare class MasterQuestion {
    id: number;
    questionCode: string;
    bindingKey: string;
    masterFormSectionId: number;
    masterFormSection: MasterFormSection;
    questionText: string;
    questionType: QuestionType;
    answerType: AnswerType;
    answerLocation: string | null;
    optionConfig: Record<string, any>[] | null;
    config: Record<string, any>;
    conditionalConfig: Record<string, any> | null;
    isActive: boolean;
    createdAt: Date;
    updatedAt: Date;
    deletedAt: Date | null;
    createdBy: number | null;
    updatedBy: number | null;
    createdByUser: User;
    updatedByUser: User;
    constructor(partial: Partial<MasterQuestion>);
}
