import type { Unrecognized } from "./../../../utils/unrecognized.js"; import type { PromotionAmountDiscountScheme } from "./../../payment/promotion/PromotionAmountDiscountScheme.js"; import type { PromotionPercentDiscountScheme } from "./../../payment/promotion/PromotionPercentDiscountScheme.js"; export type PromotionDiscountScheme = /** 정액 할인 */ PromotionAmountDiscountScheme /** 정률 할인 */ | PromotionPercentDiscountScheme | { readonly type: Unrecognized; }; export declare function isUnrecognizedPromotionDiscountScheme(entity: PromotionDiscountScheme): entity is { readonly type: Unrecognized; };