export interface Plan { name: string; isRecommend: boolean; trial?: number; description?: string; price: string; sku: string; type: "subs" | "product"; }