import { Price } from '../../order/Price';
import { Service } from './Service';
/** Representation of a product renew pricing */
export interface RenewStrategy {
    /** Price of the product */
    price: Price;
    /** Price of the product in micro-centims */
    priceInUcents: number;
    /** Services renewed by strategy */
    services: number[];
    /** Details of services renewed by strategy */
    servicesDetails: Service[];
}
//# sourceMappingURL=RenewStrategy.d.ts.map