import { Model } from 'sequelize'; import { IRmsLocationAttributes } from '../../interfaces/rmsLocationInterface'; import { TRmsLocationCreationAttributes } from '../../types/rmsLocationType'; import { COMMAN_STATUS, LOCATION_TYPE } from '../../constants'; declare class RmsLocationModel extends Model implements IRmsLocationAttributes { id: string; instituteId: string; parentLocationId?: string | null; locationCode: string; locationName: string; locationType: LOCATION_TYPE; capacity?: number | null; status: COMMAN_STATUS; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: string; static associate(models: any): void; } export default RmsLocationModel;