type PlanTagType = import('@/defines').PlanTagType; declare namespace API { type Plan = { channelItemId?: string; title?: string; subTitle?: string; introduce?: string; orgPrice?: number; price?: number; tag?: string; tagType?: PlanTagType; currency?: number; recommend?: boolean; isDefault?: boolean; sort?: number; deviceLimit?: number; isSubscribe?: boolean; subscribeType?: number; subscribePeriodValue?: number; payoutType?: string; payoutData?: string; }; type PlanList = { total: number; list: Plan[]; } }