import { PaymentInterval } from '../payment/'; export declare enum PaymentPlanID { ANNUAL = "wire_annual_plan", MONTHLY = "wire_monthly_plan" } export interface PaymentPlan { amount: number; custom: boolean; id: PaymentPlanID; interval: PaymentInterval; name: string; } //# sourceMappingURL=PaymentPlan.d.ts.map