export default class BotsTelegramUserStorageModel extends Model { static schema: { telegramChatId: { type: StringConstructor; required: boolean; }; telegramUserId: { type: StringConstructor; required: boolean; }; storage: { type: ObjectConstructor; }; meta: { type: ObjectConstructor; }; info: { type: ObjectConstructor; }; private: { type: ObjectConstructor; }; }; static options: { model: string; collection: string; timestamps: boolean; }; } import Model from "@lskjs/db/Model";