/// export default class BotsUserDataModel extends Model { static schema: { userId: typeof import("mongoose").Schema.Types.ObjectId; telegramChatId: StringConstructor; telegramUserId: StringConstructor; plugin: StringConstructor; type: { type: StringConstructor; required: boolean; }; count: NumberConstructor; meta: { type: ObjectConstructor; }; info: { type: ObjectConstructor; }; private: { type: ObjectConstructor; }; }; static options: { model: string; collection: string; timestamps: boolean; }; } import Model from "@lskjs/db/Model";