/** * * `DRAFT` - DRAFT * * `IN_PROGRESS` - IN_PROGRESS * * `SHIPPED` - SHIPPED * * `CANCELLED` - CANCELLED */ export declare const ItemFulfillmentStatusEnum: { readonly Draft: "DRAFT"; readonly InProgress: "IN_PROGRESS"; readonly Shipped: "SHIPPED"; readonly Cancelled: "CANCELLED"; }; export type ItemFulfillmentStatusEnum = (typeof ItemFulfillmentStatusEnum)[keyof typeof ItemFulfillmentStatusEnum];