import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Status of payment */ export declare const PaymentStatus: { readonly Authorised: "authorised"; readonly Paid: "paid"; readonly Voided: "voided"; readonly Deleted: "deleted"; }; /** * Status of payment */ export type PaymentStatus = ClosedEnum; /** @internal */ export declare const PaymentStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PaymentStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PaymentStatus$ { /** @deprecated use `PaymentStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Authorised: "authorised"; readonly Paid: "paid"; readonly Voided: "voided"; readonly Deleted: "deleted"; }>; /** @deprecated use `PaymentStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Authorised: "authorised"; readonly Paid: "paid"; readonly Voided: "voided"; readonly Deleted: "deleted"; }>; } //# sourceMappingURL=paymentstatus.d.ts.map