declare class MongodbModel { cl: any; constructor(mongoClient: any, database: any, collection: any); create(newAccount: any): Promise; processAndCreate(userInfo: any, options?: { jumpPwdCheck: boolean; }): Promise; list({ filter }?: { filter?: {} | undefined; }, { page, size }?: { page?: null | undefined; size?: null | undefined; }): Promise<{ accounts: any; total: any; }>; forbid(id: any): any; unforbid(id: any): any; updateOne(where: any, updata: any): Promise; findOne(where: any): Promise; getAccount(username: string): Promise; } export { MongodbModel };