/// export default class BotsTelegramImpressionModel extends Model { static schema: { type: { type: StringConstructor; required: boolean; enum: string[]; }; chatId: { type: typeof import("mongoose").Schema.Types.ObjectId; required: boolean; }; userId: { type: typeof import("mongoose").Schema.Types.ObjectId; required: boolean; }; message_id: { type: StringConstructor; required: boolean; }; meta: { type: ObjectConstructor; }; info: { type: ObjectConstructor; }; private: { type: ObjectConstructor; }; }; static options: { model: string; collection: string; timestamps: boolean; }; } import Model from "@lskjs/db/Model";