/// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// import { Types, Document, Schema } from "mongoose"; import { StockQuantity } from "./stockQuantity"; export declare class Player extends Document { id?: Types.ObjectId; name: string; password: string; email: string; gameId: string; balance: number; portfolio: StockQuantity[]; constructor(userName: string, password: string, email: string, gameId: string, balance: number); } export declare const PlayerSchema: Schema & Player & { _id: Types.ObjectId; }, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Player, Document> & import("mongoose").FlatRecord & { _id: Types.ObjectId; }>; export declare const PlayerModel: import("mongoose").Model & Player & { _id: Types.ObjectId; }, any>;