import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; /** * Indicates the status of the Transaction. */ export declare const TransactionStatusEnum: { readonly Waiting: "WAITING"; readonly Queued: "QUEUED"; readonly Success: "SUCCESS"; readonly Error: "ERROR"; readonly Refunded: "REFUNDED"; readonly Refundpending: "REFUNDPENDING"; readonly Refundrejected: "REFUNDREJECTED"; }; /** * Indicates the status of the Transaction. */ export type TransactionStatusEnum = ClosedEnum; /** @internal */ export declare const TransactionStatusEnum$inboundSchema: z.ZodMiniEnum; /** @internal */ export declare const TransactionStatusEnum$outboundSchema: z.ZodMiniEnum; //# sourceMappingURL=transactionstatusenum.d.ts.map