export declare const V1OrderHistoryEntryAction: { readonly OrderPlaced: "ORDER_PLACED"; readonly Declined: "DECLINED"; readonly PaymentReceived: "PAYMENT_RECEIVED"; readonly Canceled: "CANCELED"; readonly Completed: "COMPLETED"; readonly Refunded: "REFUNDED"; readonly Expired: "EXPIRED"; }; export type V1OrderHistoryEntryAction = (typeof V1OrderHistoryEntryAction)[keyof typeof V1OrderHistoryEntryAction];