@churchapps/apphelper-donations
Version:
Donation components for ChurchApps AppHelper
15 lines • 507 B
TypeScript
import React from "react";
import type { Stripe } from "@stripe/stripe-js";
import { StripePaymentMethod } from "../helpers";
import { PersonInterface } from "@churchapps/helpers";
interface Props {
person: PersonInterface;
customerId: string;
paymentMethods: StripePaymentMethod[];
stripePromise: Promise<Stripe>;
appName: string;
dataUpdate: (message?: string) => void;
}
export declare const PaymentMethods: React.FC<Props>;
export {};
//# sourceMappingURL=PaymentMethods.d.ts.map