/**
 * Enum for coupon duration
 */
declare enum CouponDuration {
    ONES = "ones",
    REPEATING = "repeating",
    FOREVER = "forever"
}
export { CouponDuration as default };
