import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Current status of the order. */ export declare const EcommerceOrderStatus: { readonly Active: "active"; readonly Completed: "completed"; readonly Cancelled: "cancelled"; readonly Archived: "archived"; readonly Unknown: "unknown"; readonly Other: "other"; }; /** * Current status of the order. */ export type EcommerceOrderStatus = ClosedEnum; /** @internal */ export declare const EcommerceOrderStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EcommerceOrderStatus$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 EcommerceOrderStatus$ { /** @deprecated use `EcommerceOrderStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Active: "active"; readonly Completed: "completed"; readonly Cancelled: "cancelled"; readonly Archived: "archived"; readonly Unknown: "unknown"; readonly Other: "other"; }>; /** @deprecated use `EcommerceOrderStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Active: "active"; readonly Completed: "completed"; readonly Cancelled: "cancelled"; readonly Archived: "archived"; readonly Unknown: "unknown"; readonly Other: "other"; }>; } //# sourceMappingURL=ecommerceorderstatus.d.ts.map