import { ObjectId } from "mongodb"; import { MatchActivityType } from "./types"; export declare class MatchActivity_Data { _id?: ObjectId; type: MatchActivityType; match_id: ObjectId; member_ids: ObjectId[]; datetime: number; seen: number; }