import { AppointmentState, AppointmentAction } from "../types"; export declare const useAppointmentState: () => { state: AppointmentState; dispatch: import("react").Dispatch; setStep: (step: number) => void; setError: (error: string | null) => void; setLoading: (loading: boolean) => void; resetForm: () => void; };