import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Status of the transaction. */ export declare const TransactionStatus: { readonly Pending: "pending"; readonly Paid: "paid"; readonly Refunded: "refunded"; readonly PartialRefund: "partialRefund"; readonly ChargedBack: "chargedBack"; readonly Uncollectible: "uncollectible"; readonly Declined: "declined"; readonly Void: "void"; }; /** * Status of the transaction. */ export type TransactionStatus = ClosedEnum; /** @internal */ export declare const TransactionStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const TransactionStatus$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=transactionstatus.d.ts.map