import React from "react"; import { AppointmentState } from "./appointment-booking/types"; import { Doctor, AddressItem } from "../services/AppointmentService"; export interface AppointmentSummaryStepProps { state: AppointmentState; selectedDoctor: Doctor | null; selectedAddress: AddressItem | null; onBack: () => void; onConfirm: () => void; } export declare const AppointmentSummaryStep: React.FC; export default AppointmentSummaryStep;