import React from "react"; import { Doctor, AddressItem } from "../services/AppointmentService"; interface AppointmentDetails { patientName?: string; visitationType?: string; appointmentDate?: string; fromTime?: string; toTime?: string; duration?: number; location?: string; mode?: string; paymentMode?: string; } interface AppointmentConfirmationStepProps { appointment: AppointmentDetails; patient: { firstName?: string; middleName?: string; lastName?: string; patientName?: string; }; selectedDoctor?: Doctor | null; selectedAddress?: AddressItem | null; onClose: () => void; onGoBackToSlots?: () => void; } declare const AppointmentConfirmationStep: React.FC; export default AppointmentConfirmationStep;