import { ObjectId } from "mongodb"; import { EventInteractionType } from "./types"; export declare class EventInteraction_Data { member_id: ObjectId; type: EventInteractionType; datetime: number; } export interface EventInteraction_Input { member_id: ObjectId; type: EventInteractionType | 'CANCEL'; }