import type { Unrecognized } from "./../../../utils/unrecognized.js"; import type { CardPromotion } from "./../../payment/promotion/CardPromotion.js"; /** 프로모션 */ export type Promotion = /** 카드 프로모션 */ CardPromotion | { readonly type: Unrecognized; }; export declare function isUnrecognizedPromotion(entity: Promotion): entity is { readonly type: Unrecognized; };