import React from 'react'; import { Chain } from '../../connected_wallets/ConnectedWallet'; interface PaymentCryptoPayModalProps { isOpen: boolean; paymentAmount: string; onWalletDisconnected: () => void; onPayment: (chain: Chain, tokenName: string) => void; onCloseModal: () => void; } declare const PaymentCryptoPayModal: React.FC; export default PaymentCryptoPayModal;