import { Model } from 'sequelize'; import { IFacilityAttributes } from '../../interfaces/facilityInterface'; import { TFacilityCreationAttributes } from '../../types/facilityType'; import { FACILITY_TYPE } from '../../constants/app'; export declare class FacilityModel extends Model { id: string; typeManagementId: string; type: FACILITY_TYPE; quantity: number; instituteId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt: string; static associate(models: any): void; static addHooks(): void; } export default FacilityModel;