/** A structure describing all information about an sms pack offer */
export interface PackOffer {
    /**  */
    countryDestination: string;
    /**  */
    giftPrice?: number;
    /**  */
    giftQuantity?: number;
    /**  */
    language: string;
    /**  */
    price: number;
    /**  */
    quantity: number;
    /**  */
    smsQuantity: number;
    /**  */
    totalPrice?: number;
}
//# sourceMappingURL=PackOffer.d.ts.map