import { ObjectId } from "mongodb"; import { Modifs } from "../../general"; export declare const MATCH_DATE_TYPE: readonly ["VIDEO", "IN_PERSON", "FIRST"]; export declare type MatchDateType = typeof MATCH_DATE_TYPE[number]; export declare class MatchDate_Data { date: number; tps: number[]; proposer: ObjectId; type: MatchDateType; notif_sent?: number; } export interface MatchDate_Input { date: number; type: MatchDateType; } export declare type MatchDate_Modifs = Modifs;