import { Price } from '../../order/Price';
/** Terms to unpack services */
export interface UnpackTerms {
    /** Tells whether or not the service can be unpacked */
    isAllowed: boolean;
    /** Price bill on the unpack action */
    price: Price;
    /** Renew period in month of the service */
    renewPeriod: number;
    /** The price it will cost when it will be renew */
    renewPrice: Price;
}
//# sourceMappingURL=UnpackTerms.d.ts.map