import { ReactElement } from 'react'; import { PaymentMethod } from '@fridaygame/client'; import { CreditCardFields } from './creditCardForm'; export interface PaymentMethodSelectorProps { paymentMethods?: (PaymentMethod | CreditCardFields)[]; onSelectPaymentMethod?: (paymentMethod: PaymentMethod | CreditCardFields | null) => unknown; selectedPaymentMethod?: PaymentMethod | CreditCardFields | string | null; } export declare function PaymentMethodSelector({ paymentMethods, onSelectPaymentMethod, selectedPaymentMethod, }: PaymentMethodSelectorProps): ReactElement;