import { Theme } from "@mui/material"; import React from "react"; import { Member } from "../EventDetailPage.types"; interface ConfirmedAttendanceCardProps { /** Members with explicit attendance status (PRESENT/ABSENT) */ attendanceMembers: Member[]; /** Theme object for styling */ theme: Theme; /** Function to format the confirmed timestamp */ formatConfirmedAt: (timestamp: string) => string; } declare const _default: React.NamedExoticComponent; export default _default;