import { FlatFee } from './FlatFee';
import { OverQuota } from './OverQuota';
import { Price } from '../../order/Price';
/** Details of fees for all plan subscriptions for this flavor */
export interface Fees {
    /** Description of the flat fee for the plan */
    flatFee: FlatFee;
    /** Detailed of fees when the consumption exceeds the size of the plans */
    overQuota: OverQuota;
    /** Total amount saved by using plans */
    savedAmount: Price;
    /** Total price of plan subscriptions for this flavor */
    totalPrice: Price;
}
//# sourceMappingURL=Fees.d.ts.map