import * as z from "zod/v4-mini";
import { ClosedEnum } from "../../types/enums.js";
/**
* Current state of the order. See the orders tutorial
*
* @remarks
* for the logic of how the status is handled.
*/
export declare const OrderStatusEnum: {
readonly Unknown: "UNKNOWN";
readonly Awaitpay: "AWAITPAY";
readonly Paid: "PAID";
readonly Refunded: "REFUNDED";
readonly Cancelled: "CANCELLED";
readonly PartiallyFulfilled: "PARTIALLY_FULFILLED";
readonly Shipped: "SHIPPED";
};
/**
* Current state of the order. See the orders tutorial
*
* @remarks
* for the logic of how the status is handled.
*/
export type OrderStatusEnum = ClosedEnum;
/** @internal */
export declare const OrderStatusEnum$inboundSchema: z.ZodMiniEnum;
/** @internal */
export declare const OrderStatusEnum$outboundSchema: z.ZodMiniEnum;
//# sourceMappingURL=orderstatusenum.d.ts.map