declare class CoreBoardExamPattern { _id?: string; cbept_board_id_edbrd?: string; cbept_academic_year_id_acayr?: string; cbept_pattern_name?: string; cbept_pattern_code?: string; cbept_pattern_type_sygms?: string; cbept_description?: string; cbept_active_from_date?: Date; cbept_active_to_date?: Date; cbept_is_current?: boolean; cbept_number_of_exams?: number; cbept_exam_structure?: any; cbept_assessment_methods?: string[]; cbept_grading_system_sygms?: string; cbept_pass_percentage?: number; cbept_max_marks?: number; cbept_subject_wise_pattern?: any; cbept_stream_specific?: boolean; cbept_streams?: string[]; cbept_level_specific?: boolean; cbept_levels?: string[]; cbept_configuration?: any; cbept_notes?: string; cbept_isactive?: boolean; createdAt?: Date; updatedAt?: Date; } export { CoreBoardExamPattern };