const{Model}=(awaitimport('sequelize')).default;exportabstractclassBaseModel<A,B>extendsModel<A,B>{/** * The date when the row was created. */publicdeclarereadonlycreatedAt:Date;/** * The date when the row was last updated. */publicdeclarereadonlyupdatedAt:Date;}