import { Model } from 'sequelize'; import { ITestimonialModelAttributes } from '../../interfaces/testimonialInterface'; import { TTestimonialModelCreationAttributes } from '../../types/testimonialType'; import { COMMAN_STATUS, USER_TYPES } from '../../constants/app'; declare class TestimonialModel extends Model { id: string; instituteId: string; message: string; userId: string; status: COMMAN_STATUS; rating: number; userType: USER_TYPES; class?: string | null; academicCalendarId?: string; sportsAcademyId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; static addHooks(models: any): void; } export default TestimonialModel;