import { Document } from 'mongoose'; export declare class User extends Document { name?: string; age?: number; phone?: string; email?: string; type?: string; password?: string; boundToWeChat?: boolean; wechatOpenId?: string; isActive?: boolean; isForbidden?: boolean; } export declare const userSchema: import("mongoose").Schema;