/** Indicates a refund's current status. */ export declare const RefundStatus: { readonly Pending: "PENDING"; readonly Approved: "APPROVED"; readonly Rejected: "REJECTED"; readonly Failed: "FAILED"; }; export type RefundStatus = (typeof RefundStatus)[keyof typeof RefundStatus];