import { Model } from 'sequelize'; import { TTermsAndConditionCreationAttributes } from '../../types/termsAndConditionType'; import { IVisitorBookAttributes } from '../../interfaces'; declare class VisitorBookModel extends Model { id: string; date: Date; name: string; purpose: string; mobileNumber: string; fileStorageId: string; instituteId: string; academicCalendarId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt: string; static associate(models: any): void; } export default VisitorBookModel;