/** The state of the order. */ export declare const OrderState: { readonly Open: "OPEN"; readonly Completed: "COMPLETED"; readonly Canceled: "CANCELED"; readonly Draft: "DRAFT"; }; export type OrderState = (typeof OrderState)[keyof typeof OrderState];