import React from "react"; export interface ContactPreferenceStepProps { preferredContactMethod: "PHONE" | "EMAIL" | "BOTH"; onContactMethodChange: (method: "PHONE" | "EMAIL" | "BOTH") => void; onBack: () => void; onSubmit: () => void; isLoading?: boolean; } export declare const ContactPreferenceStep: React.FC;