import { Price } from '../order/Price';
/** Informations related to a line offer */
export interface LineOffer {
    /** The offer description */
    description: string;
    /** The offer name */
    name: string;
    /** Offer price per month */
    price?: Price;
}
//# sourceMappingURL=LineOffer.d.ts.map