import { User } from './user.entity';
import { MasterQuestion } from './master-question.entity';
export declare class MasterFormSection {
    id: number;
    sectionKey: string;
    name: string;
    description: string;
    parentSectionId: number | null;
    parentSection: MasterFormSection;
    conditionalConfig: Record<string, any> | null;
    isActive: boolean;
    createdAt: Date;
    updatedAt: Date;
    deletedAt: Date | null;
    createdBy: number | null;
    updatedBy: number | null;
    createdByUser: User;
    updatedByUser: User;
    questions: MasterQuestion[];
    constructor(partial: Partial<MasterFormSection>);
}
