import { Price } from './Price';
import { Promotion } from '../migrationAndAddressMove/Promotion';
/** Price details for an offer */
export interface PriceOffer {
    /** Creation line fees */
    creationLineFees: Price;
    /** Price of the current offer */
    currentOfferPrice: Price;
    /** Upgrade offer price */
    due: Price;
    /** Subscription price the first year */
    firstYearPromo: Price;
    /** Install fee for GTR option comfort additional cost */
    gtrComfortFees?: Price;
    /** Installation fees */
    installFees: Price;
    /** Price for modem rental */
    modemRental: Price;
    /** Price of the offer */
    price: Price;
    /** Promotion, if available */
    promotion?: Promotion;
    /** Subscription price for provider AI additional cost */
    providerAI?: Price;
    /** Subscription price for provider ORANGE additional cost */
    providerOrange?: Price;
}
//# sourceMappingURL=PriceOffer.d.ts.map