import { OfferEnum } from './OfferEnum';
import { Price } from '../../order/Price';
/** Struct which describs an boost offer from a service */
export interface AvailableOfferStruct {
    /** Available boost offer */
    offer: OfferEnum;
    /** The price in month for this boost offer */
    price: Price;
}
//# sourceMappingURL=AvailableOfferStruct.d.ts.map