/** Plan subscription for a flavor */
export interface Subscription {
    /** Start date of the savings plan */
    begin: string;
    /** End date of the savings plan */
    end: string;
    /** Id of the plan */
    id: string;
    /** Size of the plans */
    size: number;
}
//# sourceMappingURL=Subscription.d.ts.map