import { ProposedOfferConfiguration } from './ProposedOfferConfiguration';
import { GenericProductDefinition } from '../../order/cart/GenericProductDefinition';
import { PercentagePromotion } from './PercentagePromotion';
/** Commercial offer a customer can migrate his service to */
export interface ProposedOffer {
    /** List of configurations used for the migration */
    configurations: ProposedOfferConfiguration[];
    /** Proposed commercial offer */
    plan: GenericProductDefinition;
    /** Pricing mode used to bill the offer */
    pricingMode: string;
    /** Promotion applied to the commercial offer */
    promotion: PercentagePromotion;
}
//# sourceMappingURL=ProposedOffer.d.ts.map