import React from 'react';
interface TamaraCheckoutURLProps {
    checkoutURL: string;
    successURL: string;
    failURL: string;
    cancelURL: string;
    onSuccess: () => void;
    onFail: () => void;
    onCancel: () => void;
}
declare const TamaraCheckoutURL: React.FC<TamaraCheckoutURLProps>;
export default TamaraCheckoutURL;
//# sourceMappingURL=TamaraCheckoutURL.d.ts.map