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 {};
