import type { BookingConfirmation } from '../../schemas/meeting-booking-schema'; /** * Confirmation — terminal success state after a completed booking. Renders * the booked instant in the visitor's resolved zone. Deliberately NO * follow-up CTA: the job is done, the calendar invite is the next touchpoint * (a "book another" button here tested as noise). */ export interface ConfirmationProps { confirmation: BookingConfirmation; timezone: string; } export declare function Confirmation({ confirmation, timezone }: ConfirmationProps): import("react").JSX.Element; //# sourceMappingURL=confirmation.d.ts.map