import * as z from "zod/v4-mini"; import { OpenEnum } from "../../types/enums.js"; export declare const PaymentStatus: { readonly Initiated: "INITIATED"; readonly Pending: "PENDING"; readonly Processing: "PROCESSING"; readonly Succeeded: "SUCCEEDED"; readonly Overpaid: "OVERPAID"; readonly Failed: "FAILED"; readonly Refunded: "REFUNDED"; readonly PartiallyRefunded: "PARTIALLY_REFUNDED"; readonly Voided: "VOIDED"; }; export type PaymentStatus = OpenEnum; /** @internal */ export declare const PaymentStatus$inboundSchema: z.ZodMiniType; /** @internal */ export declare const PaymentStatus$outboundSchema: z.ZodMiniType; //# sourceMappingURL=payment-status.d.ts.map