import { Price } from '../order/Price';
/** Informations related to a telephone offer */
export interface HardwareOffer {
    /** The telephony description */
    description?: string;
    /** The telephony name */
    name: string;
    /** Telephony price */
    price: Price;
    /** An URL to telephony details */
    url?: string;
}
//# sourceMappingURL=HardwareOffer.d.ts.map