import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Current status of the order. */ export declare const OrderStatus: { readonly Pending: "pending"; readonly Paid: "paid"; }; /** * Current status of the order. */ export type OrderStatus = ClosedEnum; /** @internal */ export declare const OrderStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const OrderStatus$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=orderstatus.d.ts.map