export declare const V1OrderState: { readonly Pending: "PENDING"; readonly Open: "OPEN"; readonly Completed: "COMPLETED"; readonly Canceled: "CANCELED"; readonly Refunded: "REFUNDED"; readonly Rejected: "REJECTED"; }; export type V1OrderState = (typeof V1OrderState)[keyof typeof V1OrderState];