/// import { IPaymentPlanConfig } from '../../types/payment-plan-configuration'; interface PaymentPlanSectionProps { paymentPlanConfig: IPaymentPlanConfig; currency: string; paymentPlanUseSavedCard: boolean; setPaymentPlanUseSavedCard: (value: boolean) => void; } export declare const PaymentPlanSection: (props: PaymentPlanSectionProps) => JSX.Element; export {};