import { Model } from 'sequelize'; import { IContactFeedBackAttributes } from '../../interfaces/contactFeedBackInterface'; import { CONTACT_FEED_BACK_TYPE } from '../../constants/app'; import { TContactFeedBackModelCreationAttributes } from '../../types/contactFeedBackType'; export declare class ContactFeedBackModel extends Model implements IContactFeedBackAttributes { id: number; subject: string; discraption: string; files: string[]; type: CONTACT_FEED_BACK_TYPE; instituteId: string; academicCalendarId: string; userId: string; givenInstitutedId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default ContactFeedBackModel;