import { TrunkSimultaneousPack } from './TrunkSimultaneousPack';
import { Price } from '../order/Price';
/** Repartition of simultaneous channels packs for a trunk */
export interface TrunkSimultaneousPacksRepartition {
    /** The optimized quantity of channels to order */
    optimizedChannelsQuantity: number;
    /** The repartition of the packs */
    packsRepartition: TrunkSimultaneousPack[];
    /** The total price of the channels packs combination */
    totalPrice: Price;
}
//# sourceMappingURL=TrunkSimultaneousPacksRepartition.d.ts.map