import { useIntl } from "react-intl" import BookingFlowInput from "../../../../BookingFlowInput" import type { RegisterOptions } from "react-hook-form" export function MembershipNumberInput({ registerOptions, label, className, disabled, }: { registerOptions?: RegisterOptions label?: string className?: string disabled?: boolean }) { const intl = useIntl() return ( ) }