import type { Sequelize as SequelizeBaseType, Model, ModelStatic } from "sequelize"; type ModelInstance = Model> & T; type AudioInstance = ModelInstance; type CategoryInstance = ModelInstance; type CommunityInstance = ModelInstance; type DomainInstance = ModelInstance; type EndorsementInstance = ModelInstance; type GroupInstance = ModelInstance; type ImageInstance = ModelInstance; type PageInstance = ModelInstance; type PointInstance = ModelInstance; type PointQualityInstance = ModelInstance; type PointRevisionInstance = ModelInstance; type PostInstance = ModelInstance; type PostStatusChangeInstance = ModelInstance; type OrganizationInstance = ModelInstance; type RatingInstance = ModelInstance; type UserInstance = ModelInstance; type VideoInstance = ModelInstance; type AcActivityInstance = ModelInstance; type AcNotificationInstance = ModelInstance; interface DeclaredYpModels { sequelize: SequelizeBaseType; Sequelize: typeof SequelizeBaseType; Audio: ModelStatic; Category: ModelStatic; Community: ModelStatic; Domain: ModelStatic; Endorsement: ModelStatic; Group: ModelStatic; Image: ModelStatic; Page: ModelStatic; Point: ModelStatic; PointQuality: ModelStatic; PointRevision: ModelStatic; Post: ModelStatic; PostStatusChange: ModelStatic; Organization: ModelStatic; Rating: ModelStatic; User: ModelStatic; Video: ModelStatic; AcActivity: ModelStatic; AcNotification: ModelStatic; } declare const db: DeclaredYpModels; export = db;