import type { Unrecognized } from "./../../../utils/unrecognized.js"; import type { DeletedBillingKeyInfo } from "./../../payment/billingKey/DeletedBillingKeyInfo.js"; import type { IssuedBillingKeyInfo } from "./../../payment/billingKey/IssuedBillingKeyInfo.js"; /** 빌링키 정보 */ export type BillingKeyInfo = /** 발급 삭제 완료 */ DeletedBillingKeyInfo /** 발급 완료 */ | IssuedBillingKeyInfo | { readonly status: Unrecognized; }; export declare function isUnrecognizedBillingKeyInfo(entity: BillingKeyInfo): entity is { readonly status: Unrecognized; };