import { Model } from 'sequelize'; import { ILostFoundItemModelAttributes } from '../../interfaces/lostFoundItemInterface'; import { TLostFoundItemModelCreationAttributes } from '../../types/lostFoundItemType'; import { LOST_FOUND_ITEM_STATUS } from '../../constants/app'; declare class LostFoundItemModel extends Model { id: string; text: string; instituteId?: string; userId?: string; academicCalendarId?: string; fileStorageId?: string; status: LOST_FOUND_ITEM_STATUS; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default LostFoundItemModel;