import type { PaymentCancellation } from "./../payment/PaymentCancellation.js";
/** 결제 취소 성공 응답 */
export type CancelPaymentResponse = {
    /** 결체 취소 내역 */
    cancellation: PaymentCancellation;
};
