/** The current state of this fulfillment. */ export declare const OrderFulfillmentState: { readonly Proposed: "PROPOSED"; readonly Reserved: "RESERVED"; readonly Prepared: "PREPARED"; readonly Completed: "COMPLETED"; readonly Canceled: "CANCELED"; readonly Failed: "FAILED"; }; export type OrderFulfillmentState = (typeof OrderFulfillmentState)[keyof typeof OrderFulfillmentState];