/// import * as types from './types'; interface PaymentCryptoPayModalProps { paymentAmount: string; metamaskAccount: types.MetamaskAccountData; onPayment: (chainId: string, token: string) => void; onCloseModal: () => void; } declare function PaymentCryptoPayModal(props: PaymentCryptoPayModalProps): JSX.Element; export default PaymentCryptoPayModal;