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