UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

14 lines (13 loc) 649 B
import type { SwappedFormOfPayment } from '@funkit/api-base'; import React from 'react'; import type { CustomWithdrawalConfig, WalletWithdrawalConfig } from '../../providers/FunkitCheckoutContext'; interface WithdrawalSwappedIframeControllerProps { selectedFop: SwappedFormOfPayment; activeConfig: WalletWithdrawalConfig | CustomWithdrawalConfig; isError: boolean; onError: () => void; onBack: () => void; onClose: () => void; } export declare function WithdrawalSwappedIframeController({ selectedFop, activeConfig, isError, onError, onBack, onClose, }: WithdrawalSwappedIframeControllerProps): React.JSX.Element; export {};