import React from "react"; export interface ContactInformationStepProps { patientName: string; patientEmail: string; countryCode: string; patientPhone: string; onNameChange: (value: string) => void; onEmailChange: (value: string) => void; onCountryCodeChange: (value: string) => void; onPhoneChange: (value: string) => void; onNext: () => void; } export declare const ContactInformationStep: React.FC;