import type { CountryPricingProfile } from '@funnelsgrove/runtime'; import { secondaryFirstPaywallPlanKey, secondaryFirstPaywallPlanOrder, } from './shared-plan-order'; export const upsellFormPricing = { defaultOfferOrder: secondaryFirstPaywallPlanOrder, defaultOfferKey: secondaryFirstPaywallPlanKey, countryOverrides: { US: { defaultOfferKey: secondaryFirstPaywallPlanKey, offerOrder: secondaryFirstPaywallPlanOrder, }, }, } as const satisfies CountryPricingProfile;