export declare class CreateMasterFormSectionDto {
    sectionKey: string;
    name: string;
    description?: string;
    parentSectionId?: number;
    conditionalConfig?: Record<string, any>;
    isActive?: boolean;
    createdBy?: number;
}
