import { Detail } from '../plan/Detail';
import { Price } from '../../order/Price';
/** MonthlySavingsPlan */
export interface MonthlySavingsPlan {
    /** Detailed listing of all flat fees */
    details: Detail[];
    /** Flavor of the savings plan */
    flavor: string;
    /** Total price of the flat fee part of associated savings plans */
    totalPrice: Price;
}
//# sourceMappingURL=MonthlySavingsPlan.d.ts.map