import React from "react";
import type { Stripe } from "@stripe/stripe-js";
import type { PaymentMethod, PaymentGateway } from "../helpers";
import { PersonInterface, ChurchInterface } from "@churchapps/helpers";
interface Props {
    person: PersonInterface;
    customerId: string;
    paymentMethods: PaymentMethod[];
    paymentGateways: PaymentGateway[];
    stripePromise?: Promise<Stripe>;
    donationSuccess: (message: string) => void;
    church?: ChurchInterface;
    churchLogo?: string;
}
export declare const MultiGatewayDonationForm: React.FC<Props>;
export {};
//# sourceMappingURL=MultiGatewayDonationForm.d.ts.map