import * as react_jsx_runtime from 'react/jsx-runtime'; import { AppointmentStatus } from './appointment-time-slot-picker.js'; interface AppointmentMiniCardItem { id: string; status: AppointmentStatus; clientName: string; clientAvatarInitials: string; /** ISO date string — "2026-04-22" */ date: string; /** Display time — "10:00 AM" */ timeStart: string; /** Display time — "10:30 AM" */ timeEnd: string; } interface AppointmentMiniCardProps { appointment: AppointmentMiniCardItem; onAccept?: () => void; onDecline?: () => void; onReschedule?: () => void; } declare function AppointmentMiniCard({ appointment, onAccept, onDecline, onReschedule, }: AppointmentMiniCardProps): react_jsx_runtime.JSX.Element; export { AppointmentMiniCard, type AppointmentMiniCardItem, type AppointmentMiniCardProps, AppointmentStatus };