import type { ItemPrice } from './ItemPrice'; export type PublicItemPricing = { item_type: string; item_id: string; item_name: string; is_paywalled: boolean; allow_free_tier: boolean; trial_period_days: number; prices: Array; };