import React from "react"; interface PaymentIframeProps { orderRef: string; tcUser: string; paymentProcessor: string; amount: string; successPage?: string; failurePage?: string; name?: string; className?: string; style?: any; scrolling?: boolean; onSuccess?: (params: URLSearchParams) => any; onFailure?: (params: URLSearchParams, error?: any) => any; children: any; } declare const PaymentIframe: React.FC; export default PaymentIframe;