import React from 'react';
import type { PaymentMethodCardInfo } from '../../../domains/paymentMethods';
import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
export type MeldCurrencySelectState = CheckoutModalCommonState & {
    defaultCurrency: string;
    paymentMethodInfo: PaymentMethodCardInfo;
};
export type MeldCurrencySelectNext = {
    currency: string;
};
export declare const MeldCurrencySelectInfo: ModalStepInfo<FunCheckoutStep.MELD_CURRENCY_SELECT>;
export declare function MeldCurrencySelect({ modalState, onNext, }: ModalStepComponentProps<FunCheckoutStep.MELD_CURRENCY_SELECT>): React.JSX.Element;
