/// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// import { Types, Document, Schema } from "mongoose"; export declare class News extends Document { id: Types.ObjectId; title: string; date: Date; content: string; stockAssociated: string[]; gameId: string; constructor(title: string, content: string, gameId: string); static create(title: string, date: Date, content: string, stockAssociated: string[], gameId: string): News; } export declare const NewsSchema: Schema & News & { _id: Types.ObjectId; }, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, News, Document> & import("mongoose").FlatRecord & { _id: Types.ObjectId; }>; export declare const NewsModel: import("mongoose").Model & News & { _id: Types.ObjectId; }, any>;