/// export default class BotsBotModel extends Model { static schema: { customerId: { type: typeof import("mongoose").Schema.Types.ObjectId; }; provider: { type: StringConstructor; required: boolean; }; creds: { type: ObjectConstructor; }; }; static options: { model: string; collection: string; timestamps: boolean; }; } import Model from "@lskjs/db/Model";