UNPKG

@coursebuilder/commerce-next

Version:

Commerce Functionality for Course Builder with Next.js

16 lines 623 B
import * as React from 'react'; import { MinimalMerchantCoupon } from '@coursebuilder/core/types'; type RegionalPricingBoxProps = { availablePPPCoupon?: { country?: string | undefined; percentageDiscount: number | string; } | null; appliedPPPCoupon: MinimalMerchantCoupon | null; setMerchantCoupon: (coupon: any) => void; index: number; setAutoApplyPPP: (apply: boolean) => void; purchaseToUpgradeExists: boolean; }; export declare const RegionalPricingBox: React.FC<React.PropsWithChildren<RegionalPricingBoxProps>>; export {}; //# sourceMappingURL=regional-pricing-box.d.ts.map