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