import type { CountryPricingProfile } from '@funnelsgrove/runtime'; import { defaultPaywallPlanKey, defaultPaywallPlanOrder, paywallCountryOverrides, } from './shared-plan-order'; export const paywallPricing = { defaultOfferOrder: defaultPaywallPlanOrder, defaultOfferKey: defaultPaywallPlanKey, countryOverrides: paywallCountryOverrides, } as const satisfies CountryPricingProfile;