import { Model } from 'sequelize'; import { IVehicleModelAttributes } from '../../interfaces/vehicleInterface'; import { TVehicleModelCreationAttributes } from '../../types/vehicleType'; import { COMMAN_STATUS } from '../../constants/app'; declare class VehicleModel extends Model implements IVehicleModelAttributes { id: string; name: string; status: COMMAN_STATUS; number: string; capacity: number; rcBookFileId: string; instituteId: string; userId: string; academicCalendarId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default VehicleModel;