import { Price } from '../../../order/Price';
/** Available option for the offer */
export interface OfferAvailableOption {
    /** Number of months paid for */
    duration: number;
    /** Number of slots included by default in this offer */
    included: number;
    /** Name of the option */
    name: string;
    /** Number of optional slots that can be puchased */
    optional: number;
    /** Price of an additional slot. You pay this price everytime the duration is expired */
    optionalPrice?: Price;
}
//# sourceMappingURL=OfferAvailableOption.d.ts.map