/** Indicates whether this is a line-item or order-level discount. */ export declare const OrderLineItemDiscountScope: { readonly OtherDiscountScope: "OTHER_DISCOUNT_SCOPE"; readonly LineItem: "LINE_ITEM"; readonly Order: "ORDER"; }; export type OrderLineItemDiscountScope = (typeof OrderLineItemDiscountScope)[keyof typeof OrderLineItemDiscountScope];